X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=includes%2Fctype.h;h=86ca13cb2b7901b60d2a7e036ba041276f4d0e60;hp=a9ecc256456fc02c9fd7577fbc103a9428d0d25f;hb=ac3f809c3c10347c110fac3db93af0954eda98bb;hpb=8b8277d2940a8745f85d86a9af3ad6970b5fa52c diff --git a/includes/ctype.h b/includes/ctype.h index a9ecc25..86ca13c 100644 --- a/includes/ctype.h +++ b/includes/ctype.h @@ -4,8 +4,7 @@ // Public Domain C Library - http://pdclib.sourceforge.net // This code is Public Domain. Use, modify, and redistribute at will. // ---------------------------------------------------------------------------- -// Provides functions for determining the locale-dependent type of a character, -// plus locale-aware uppercase / lowercase conversions. (See also locale.h.) +// Character handling // ---------------------------------------------------------------------------- #ifndef __CTYPE_H @@ -35,7 +34,7 @@ int isgraph( int c ); // returns nonzero if c is a lowercase alphabetic character in the locale. int islower( int c ); -// returns nonzero if c is a printable character ( isgraph( ) or isblank( ) ) in +// returns nonzero if c is a printable character ( isgraph() or isblank() ) in // the locale. int isprint( int c );