1 /*
2 Copyright (c) 2017 Thomas Wolff towo@towo.net
3  */
4 /* category data */
5 
6 #include <stdint.h>
7 
8 enum category {
9 #include "categories.cat"
10     CAT_error = -1,
11 };
12 
13 extern enum category category(uint32_t ucs);
14