File: s_hsearch.h

package info (click to toggle)
super 3.30.0-7
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 2,160 kB
  • ctags: 1,512
  • sloc: ansic: 21,957; sh: 297; makefile: 293
file content (34 lines) | stat: -rw-r--r-- 884 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#ifndef HSEARCH_H
#define HSEARCH_H

#include "config.h"

typedef struct entry {
    char           *key;
    char           *data;
}               ENTRY;

typedef enum {
    FIND,
    ENTER
}               ACTION;

typedef struct element {
    ENTRY           item;
    struct element *next;
}               ELEMENT;

extern ENTRY   *s_hsearch P__(( int which, ENTRY e, ACTION a ));
extern void     s_hdestroy P__(( int which ));
extern int      s_hcreate P__(( int which, unsigned int how_many ));
extern void     hprint P__(( int which, void (*f)() ));
extern void     htext P__(( int indx, char *key, char *data ));

#define HS_VARS  0	/* The HS_xxx values ... */
#define HS_USER  1	/* ...must start at 0... */
#define HS_HOST  2	/* ...and increment w/o holes... */
#define HS_GROUP 3	/* ...to the largest value */

#define HS_SETS  4	/* Number of HS_xxx items, above. */

#endif