Deleted Added
full compact
alist.h (178529) alist.h (178546)
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
7 * with the License.
8 *

--- 34 unchanged lines hidden (view full) ---

43alist_t *alist_new(void (*)(void *), void (*)(void *));
44alist_t *alist_xnew(int, void (*)(void *), void (*)(void *),
45 int (*)(int, void *), int (*)(void *, void *));
46void alist_free(alist_t *);
47void alist_add(alist_t *, void *, void *);
48int alist_find(alist_t *, void *, void **);
49int alist_iter(alist_t *, int (*)(void *, void *, void *), void *);
50void alist_stats(alist_t *, int);
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
7 * with the License.
8 *

--- 34 unchanged lines hidden (view full) ---

43alist_t *alist_new(void (*)(void *), void (*)(void *));
44alist_t *alist_xnew(int, void (*)(void *), void (*)(void *),
45 int (*)(int, void *), int (*)(void *, void *));
46void alist_free(alist_t *);
47void alist_add(alist_t *, void *, void *);
48int alist_find(alist_t *, void *, void **);
49int alist_iter(alist_t *, int (*)(void *, void *, void *), void *);
50void alist_stats(alist_t *, int);
51int alist_dump(alist_t *, int (*)(void *, void *));
51
52#ifdef __cplusplus
53}
54#endif
55
56#endif /* _ASSOC_H */
52
53#ifdef __cplusplus
54}
55#endif
56
57#endif /* _ASSOC_H */