sksp2024-mcu/libucw/ucw/char-cat.c

18 lines
372 B
C
Raw Normal View History

2024-09-14 21:50:33 +02:00
/*
* UCW Library -- Character Classes
*
* (c) 1998--2004 Martin Mares <mj@ucw.cz>
*
* This software may be freely distributed and used according to the terms
* of the GNU Lesser General Public License.
*/
#include <ucw/lib.h>
#include <ucw/chartype.h>
const byte ucw_c_cat[256] = {
#define CHAR(code,upper,lower,cat) cat,
#include <ucw/char-map.h>
#undef CHAR
};