Re: [PATCHv2 1/2] lib: make _tolower() public

From: Alexey Dobriyan
Date: Mon Jul 18 2011 - 16:52:49 EST


ctype.h is better place, otherwise

Acked-by: Alexey Dobriyan <adobriyan@xxxxxxxxx>

> --- a/include/linux/kernel.h
> +++ b/include/linux/kernel.h
> @@ -189,6 +189,12 @@ NORET_TYPE void complete_and_exit(struct completion *, long)
> ATTRIB_NORET;
>
> /* Internal, do not use. */
> +static inline char _tolower(const char c)
> +{
> + return c | 0x20;
> +}
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/