1 /* namealias.h
2 Copyright (C) 2014, Parrot Foundation.
3 
4 gperf generated icu control character namealias lookup
5 
6 */
7 
8 #ifndef PARROT_NAMEALIAS_H_GUARD
9 #define PARROT_NAMEALIAS_H_GUARD
10 
11 #include "parrot/parrot.h"
12 
13 #ifdef PARROT_IN_CORE
14 
15 /* HEADERIZER STOP */
16 
17 struct Parrot_namealias { int name; const INTVAL codepoint; };
18 
19 const struct Parrot_namealias *
20 Parrot_namealias_lookup(register const char *str, register unsigned int len);
21 
22 #endif /* PARROT_IN_CORE */
23 #endif /* PARROT_NAMEALIAS_H_GUARD */
24 
25 /*
26  * Local variables:
27  *   c-file-style: "parrot"
28  * End:
29  * vim: expandtab shiftwidth=4 cinoptions='\:2=2' :
30  */
31