You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
372 B
17 lines
372 B
/*
|
|
* UCW Library -- Uppercase Map
|
|
*
|
|
* (c) 1997--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_upper[256] = {
|
|
#define CHAR(code,upper,lower,cat) upper,
|
|
#include <ucw/char-map.h>
|
|
#undef CHAR
|
|
};
|
|
|