[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <4693D463.5010900@zytor.com>
Date: Tue, 10 Jul 2007 11:48:03 -0700
From: "H. Peter Anvin" <hpa@...or.com>
To: Jan Engelhardt <jengelh@...putergmbh.de>
CC: linux-kernel@...r.kernel.org, linux-arch@...r.kernel.org,
andi@...stfloor.org, akpm@...ux-foundation.org
Subject: Re: [x86 setup 20/33] Console-writing code for the new x86 setup
code
Jan Engelhardt wrote:
> On Jul 9 2007 19:51, H. Peter Anvin wrote:
>> +
>> +static inline int isdigit(int ch)
>> +{
>> + return (ch >= '0') && (ch <= '9');
>> +}
>
> I'd say static inline unsigned int isdigit(unsigned char), since ASCII does not
> realistically exceed 255.
If you're trying to be standard, you're doing the wrong thing (the
standard is int, since -1 is a permitted value.)
It doesn't matter anyway, and your version would probably generate
slightly worse code.
>> +static int strnlen(const char *s, int maxlen)
>
> unsigned int, and unsigned int, too?
> The glibc strnlen type also uses unsigned types.
If anything it should be size_t. Fixing, and moved to string.c, where
it belongs.
-hpa
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists