Re: [PATCH net-next v2 1/3] string_helpers: Move string_is_valid() to the header

From: Jakub Kicinski
Date: Tue Feb 07 2023 - 23:30:42 EST


On Mon, 6 Feb 2023 18:13:12 +0200 Andy Shevchenko wrote:
> +static inline bool string_is_valid(const char *s, int len)
> +{
> + return memchr(s, '\0', len) ? true : false;
> +}

I was tempted to suggest adding a kdoc, but perhaps the function
doesn't have an obvious enough name? Maybe we should call the helper
string_is_terminated(), instead?