Deleted Added
full compact
search.hin (226031) search.hin (226128)
1/*-
2 * Written by J.T. Conklin <jtc@netbsd.org>
3 * Public domain.
4 *
5 * $NetBSD: search.h,v 1.12 1999/02/22 10:34:28 christos Exp $
6 */
7
8#ifndef _rk_SEARCH_H_

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

27 preorder,
28 postorder,
29 endorder,
30 leaf
31} VISIT;
32
33ROKEN_CPP_START
34
1/*-
2 * Written by J.T. Conklin <jtc@netbsd.org>
3 * Public domain.
4 *
5 * $NetBSD: search.h,v 1.12 1999/02/22 10:34:28 christos Exp $
6 */
7
8#ifndef _rk_SEARCH_H_

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

27 preorder,
28 postorder,
29 endorder,
30 leaf
31} VISIT;
32
33ROKEN_CPP_START
34
35ROKEN_LIB_FUNCTION void * ROKEN_LIB_CALL rk_tdelete(const void * __restrict, void ** __restrict,
35ROKEN_LIB_FUNCTION void * ROKEN_LIB_CALL rk_tdelete(const void *, void **,
36 int (*)(const void *, const void *));
37ROKEN_LIB_FUNCTION void * ROKEN_LIB_CALL rk_tfind(const void *, void * const *,
38 int (*)(const void *, const void *));
39ROKEN_LIB_FUNCTION void * ROKEN_LIB_CALL rk_tsearch(const void *, void **, int (*)(const void *, const void *));
40ROKEN_LIB_FUNCTION void ROKEN_LIB_CALL rk_twalk(const void *, void (*)(const void *, VISIT, int));
41
42ROKEN_CPP_END
43
44#endif /* !_rk_SEARCH_H_ */
36 int (*)(const void *, const void *));
37ROKEN_LIB_FUNCTION void * ROKEN_LIB_CALL rk_tfind(const void *, void * const *,
38 int (*)(const void *, const void *));
39ROKEN_LIB_FUNCTION void * ROKEN_LIB_CALL rk_tsearch(const void *, void **, int (*)(const void *, const void *));
40ROKEN_LIB_FUNCTION void ROKEN_LIB_CALL rk_twalk(const void *, void (*)(const void *, VISIT, int));
41
42ROKEN_CPP_END
43
44#endif /* !_rk_SEARCH_H_ */