diff options
author | Mattias Andrée <maandree@member.fsf.org> | 2016-01-14 19:40:19 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@member.fsf.org> | 2016-01-14 19:41:01 +0100 |
commit | a54fe77c04c7c2bda913ff63b0463417fb28794c (patch) | |
tree | 1ef85655a56b967a594d54813636b7196aa6ceab /src | |
parent | partially split malloc.c (diff) | |
download | slibc-a54fe77c04c7c2bda913ff63b0463417fb28794c.tar.gz slibc-a54fe77c04c7c2bda913ff63b0463417fb28794c.tar.bz2 slibc-a54fe77c04c7c2bda913ff63b0463417fb28794c.tar.xz |
misread specification
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/ctype.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/ctype.c b/src/ctype.c index 0909905..a65741a 100644 --- a/src/ctype.c +++ b/src/ctype.c @@ -231,11 +231,6 @@ int (isxdigit)(int c) * Convert a uppercase ASCII character to * an lowercase ASCII character. * - * The function's behaviour is unspecified - * of the character is not alphabetical. - * You should consider running - * `(isupper(c) ? tolower(c) : c)` instead. - * * @etymology Convert character (to) (lower)case! * * @param c The character. @@ -255,11 +250,6 @@ int (tolower)(int c) * Convert a lowercase ASCII character to * an uppercase ASCII character. * - * The function's behaviour is unspecified - * of the character is not alphabetical. - * You should consider running - * `(isupper(c) ? tolower(c) : c)` instead. - * * @etymology Convert character (to) (upper)case! * * @param c The character. |