]> mj.ucw.cz Git - libucw.git/blobdiff - lib/chartype.h
Several bug fixes in the logger:
[libucw.git] / lib / chartype.h
index 4111eb11eb0a0b15e3d33b0ac9b9f58c8bcf7c6d..6ef0ccd0a67c6f94c903bc1a1e9fa3525ef9ee3b 100644 (file)
@@ -2,6 +2,9 @@
  *     Sherlock Library -- Character Types
  *
  *     (c) 1997 Martin Mares <mj@ucw.cz>
+ *
+ *     This software may be freely distributed and used according to the terms
+ *     of the GNU Lesser General Public License.
  */
 
 #ifndef _SHERLOCK_CHARTYPE_H
@@ -13,7 +16,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)