/* * This file is in public domain * Author: Eugeniy Meshcheryakov */ #ifndef UNICODE_BLOCKS_H #define UNICODE_BLOCKS_H #include struct unicode_block { unsigned long start; unsigned long end; const char *name; }; extern const struct unicode_block unicode_blocks[]; #endif