]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/char-lower.c
strtonum: Added small bits of documentation
[libucw.git] / ucw / char-lower.c
index 700ae370a8a92144cfffc5277095b72b4a8c8402..cc6f99eb73bd8bbc2681de53842b2f30a6670bc3 100644 (file)
@@ -7,10 +7,11 @@
  *     of the GNU Lesser General Public License.
  */
 
-#include "ucw/chartype.h"
+#include <ucw/lib.h>
+#include <ucw/chartype.h>
 
-const unsigned char _c_lower[256] = {
+const byte _c_lower[256] = {
 #define CHAR(code,upper,lower,cat) lower,
-#include "ucw/char-map.h"
+#include <ucw/char-map.h>
 #undef CHAR
 };