1 /*
2  * This file is in public domain
3  * Author: Ievgenii Meshcheriakov <eugen@debian.org>
4  */
5 #ifndef UNICODE_BLOCKS_H
6 #define UNICODE_BLOCKS_H
7 
8 #include <stdlib.h>
9 
10 struct unicode_block {
11   unsigned long start;
12   unsigned long end;
13   const char *name;
14 };
15 
16 struct unicode_block *read_blocks(const char *file_name, int *n);
17 
18 #endif
19