]> mj.ucw.cz Git - libucw.git/blobdiff - lib/chartype.h
dmalloc and efence work again (ported from rel-2.1 branch).
[libucw.git] / lib / chartype.h
index 16118b9fa64c730a710a9060181ada4ce2f0060d..0276e20e4faf058c26c35a6787d2b9def9135e74 100644 (file)
@@ -1,7 +1,7 @@
 /*
  *     Sherlock Library -- Character Types
  *
- *     (c) 1997 Martin Mares, <mj@atrey.karlin.mff.cuni.cz>
+ *     (c) 1997 Martin Mares <mj@ucw.cz>
  */
 
 #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)