xref: /original-bsd/usr.bin/mklocale/ldef.h (revision c3e32dec)
1 /*-
2  * Copyright (c) 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Paul Borman at Krystal Technologies.
7  *
8  * %sccs.include.redist.c%
9  *
10  *	@(#)ldef.h	8.1 (Berkeley) 06/06/93
11  */
12 
13 /*
14  * This should look a LOT like a _RuneEntry
15  */
16 typedef struct rune_list {
17     rune_t		min;
18     rune_t 		max;
19     rune_t 		map;
20     u_long		*types;
21     struct rune_list	*next;
22 } rune_list;
23 
24 typedef struct rune_map {
25     u_long		map[_CACHED_RUNES];
26     rune_list		*root;
27 } rune_map;
28