(latexenc-find-file-coding-system): Don't inherit the EOL part of the
[emacs.git] / oldXMenu / XCrAssoc.c
blob67239a26d311383c3aee47745c62c9b107092a20
1 /* Copyright Massachusetts Institute of Technology 1985 */
3 /*
4 Permission to use, copy, modify, distribute, and sell this software and its
5 documentation for any purpose is hereby granted without fee, provided that
6 the above copyright notice appear in all copies and that both that
7 copyright notice and this permission notice appear in supporting
8 documentation, and that the name of M.I.T. not be used in advertising or
9 publicity pertaining to distribution of the software without specific,
10 written prior permission. M.I.T. makes no representations about the
11 suitability of this software for any purpose. It is provided "as is"
12 without express or implied warranty.
15 #include <config.h>
16 #include <X11/Xlib.h>
17 #include <errno.h>
18 #include "X10.h"
20 #ifndef NULL
21 #define NULL 0
22 #endif
24 extern int errno;
27 * XCreateAssocTable - Create an XAssocTable. The size argument should be
28 * a power of two for efficiency reasons. Some size suggestions: use 32
29 * buckets per 100 objects; a reasonable maximum number of object per
30 * buckets is 8. If there is an error creating the XAssocTable, a NULL
31 * pointer is returned.
33 XAssocTable *XCreateAssocTable(size)
34 register int size; /* Desired size of the table. */
36 register XAssocTable *table; /* XAssocTable to be initialized. */
37 register XAssoc *buckets; /* Pointer to the first bucket in */
38 /* the bucket array. */
40 /* Malloc the XAssocTable. */
41 if ((table = (XAssocTable *)malloc(sizeof(XAssocTable))) == NULL) {
42 /* malloc call failed! */
43 errno = ENOMEM;
44 return(NULL);
47 /* calloc the buckets (actually just their headers). */
48 buckets = (XAssoc *)calloc((unsigned)size, (unsigned)sizeof(XAssoc));
49 if (buckets == NULL) {
50 /* calloc call failed! */
51 errno = ENOMEM;
52 return(NULL);
55 /* Insert table data into the XAssocTable structure. */
56 table->buckets = buckets;
57 table->size = size;
59 while (--size >= 0) {
60 /* Initialize each bucket. */
61 buckets->prev = buckets;
62 buckets->next = buckets;
63 buckets++;
66 return(table);
69 /* arch-tag: 5df3237d-ada0-4345-a3ab-282cafb397aa
70 (do not change this comment) */