diff options
author | Jakob Kaivo <jkk@ung.org> | 2019-03-02 11:33:02 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2019-03-02 11:33:02 -0500 |
commit | f7afd7bc9c759650c1b52ee6ff0c8f2956297056 (patch) | |
tree | 4ac4834972dc7601476a4f3d7e336605ecf6d01b /src/ctype/isalnum.c | |
parent | c22a0473c06092a41fb728ce668572082bb50636 (diff) |
clean up documentation
Diffstat (limited to 'src/ctype/isalnum.c')
-rw-r--r-- | src/ctype/isalnum.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ctype/isalnum.c b/src/ctype/isalnum.c index 507655ae..6b0d7388 100644 --- a/src/ctype/isalnum.c +++ b/src/ctype/isalnum.c @@ -3,13 +3,10 @@ #include "nonstd/assert.h" /** test whether a character is alphanumeric **/ + int isalnum(int c) { ASSERT_REPRESENTABLE(c, 0, UCHAR_MAX, unsigned char, EOF); - /* - RETURN(NONZERO, ARGUMENT(c) is an alpanumeric character); - RETURN(0, ARGUMENT(c) is not an alphanumeric character); - */ return isalpha(c) || isdigit(c); } @@ -17,7 +14,10 @@ int isalnum(int c) tests whether ARGUMENT(c) is a character in the class CHARACTER_CLASS(alpha) or CHARACTER_CLASS(digit) in the current locale. ***/ + /* +RETURN(NONZERO, ARGUMENT(c) is an alpanumeric character) +RETURN(0, ARGUMENT(c) is not an alphanumeric character) LC_CTYPE STDC(1) */ |