]> mj.ucw.cz Git - libucw.git/blobdiff - lib/chartype.h
Added some headers to avoid confusion of our own developers ;)
[libucw.git] / lib / chartype.h
index 0276e20e4faf058c26c35a6787d2b9def9135e74..ef08205e9777db000edcc39c6ccd90a81296dd0e 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
@@ -21,7 +24,7 @@
 #define _C_WORD (_C_ALNUM | _C_INNER)
 #define _C_WSTART (_C_ALPHA | _C_INNER)
 
-extern unsigned char _c_cat[256], _c_upper[256], _c_collate[256], _c_order[256];
+extern const unsigned char _c_cat[256], _c_upper[256];
 
 #define Category(x) (_c_cat[(unsigned char)(x)])
 #define Ccat(x,y) (Category(x) & y)