X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=inline;f=lib%2Fchartype.h;h=0276e20e4faf058c26c35a6787d2b9def9135e74;hb=6d3f0167feb4d66ace66963200726439cb4a3914;hp=16118b9fa64c730a710a9060181ada4ce2f0060d;hpb=edaee717448dedce382b0f5313a3712361b79ca8;p=libucw.git diff --git a/lib/chartype.h b/lib/chartype.h index 16118b9f..0276e20e 100644 --- a/lib/chartype.h +++ b/lib/chartype.h @@ -1,7 +1,7 @@ /* * Sherlock Library -- Character Types * - * (c) 1997 Martin Mares, + * (c) 1997 Martin Mares */ #ifndef _SHERLOCK_CHARTYPE_H @@ -13,7 +13,7 @@ #define _C_DIGIT 8 /* Digits */ #define _C_CTRL 16 /* Control characters */ #define _C_XDIGIT 32 /* Hexadecimal digits */ -#define _C_BLANK 64 /* Blanks */ +#define _C_BLANK 64 /* White spaces (spaces, tabs, newlines) */ #define _C_INNER 128 /* `inner punctuation' -- underscore etc. */ #define _C_ALPHA (_C_UPPER | _C_LOWER)