Sync to HEAD
[bpt/emacs.git] / oldXMenu / XDestAssoc.c
CommitLineData
e745ede7
DL
1/* Copyright Massachusetts Institute of Technology 1985 */
2
3/*
4Permission to use, copy, modify, distribute, and sell this software and its
5documentation for any purpose is hereby granted without fee, provided that
6the above copyright notice appear in all copies and that both that
7copyright notice and this permission notice appear in supporting
8documentation, and that the name of M.I.T. not be used in advertising or
9publicity pertaining to distribution of the software without specific,
10written prior permission. M.I.T. makes no representations about the
11suitability of this software for any purpose. It is provided "as is"
12without express or implied warranty.
13*/
14
15#include <X11/Xlib.h>
16#include "X10.h"
17
18/*
19 * XDestroyAssocTable - Destroy (free the memory associated with)
177c0ea7 20 * an XAssocTable.
e745ede7
DL
21 */
22XDestroyAssocTable(table)
23 register XAssocTable *table;
24{
25 register int i;
26 register XAssoc *bucket;
27 register XAssoc *Entry, *entry_next;
28
29 /* Free the buckets. */
30 for (i = 0; i < table->size; i++) {
31 bucket = &table->buckets[i];
32 for (
33 Entry = bucket->next;
34 Entry != bucket;
35 Entry = entry_next
36 ) {
37 entry_next = Entry->next;
38 free((char *)Entry);
39 }
40 }
41
42 /* Free the bucket array. */
43 free((char *)table->buckets);
44
45 /* Free the table. */
46 free((char *)table);
47}
48
6b61353c
KH
49/* arch-tag: a536bf02-8d63-45f2-8c1a-c7f9fd4da2cf
50 (do not change this comment) */