date and time created 93/05/30 15:44:11 by bostic
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Mon, 31 May 1993 06:44:11 +0000 (22:44 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Mon, 31 May 1993 06:44:11 +0000 (22:44 -0800)
SCCS-vsn: usr.bin/mklocale/ldef.h 5.1

usr/src/usr.bin/mklocale/ldef.h [new file with mode: 0644]

diff --git a/usr/src/usr.bin/mklocale/ldef.h b/usr/src/usr.bin/mklocale/ldef.h
new file mode 100644 (file)
index 0000000..eb809ee
--- /dev/null
@@ -0,0 +1,27 @@
+/*-
+ * Copyright (c) 1993 The Regents of the University of California.
+ * All rights reserved.
+ *
+ * This code is derived from software contributed to Berkeley by
+ * Paul Borman at Krystal Technologies.
+ *
+ * %sccs.include.redist.c%
+ *
+ *     @(#)ldef.h      5.1 (Berkeley) %G%
+ */
+
+/*
+ * This should look a LOT like a _RuneEntry
+ */
+typedef struct rune_list {
+    rune_t             min;
+    rune_t             max;
+    rune_t             map;
+    u_long             *types;
+    struct rune_list   *next;
+} rune_list;
+
+typedef struct rune_map {
+    u_long             map[_CACHED_RUNES];
+    rune_list          *root;
+} rune_map;