]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/char-lower.c
tableprinter: removed unnecessary macros, code cleanup
[libucw.git] / ucw / char-lower.c
index 91ff8aa23c5ad534751bc153ba4ff63d912538bd..db97583f56602c796b45d08adcf22d1be620f00c 100644 (file)
@@ -7,11 +7,11 @@
  *     of the GNU Lesser General Public License.
  */
 
-#include "ucw/lib.h"
-#include "ucw/chartype.h"
+#include <ucw/lib.h>
+#include <ucw/chartype.h>
 
-const byte _c_lower[256] = {
+const byte ucw_c_lower[256] = {
 #define CHAR(code,upper,lower,cat) lower,
-#include "ucw/char-map.h"
+#include <ucw/char-map.h>
 #undef CHAR
 };