| 2 |
|
/* |
| 3 |
|
* Header file for general associative table lookup routines |
| 4 |
|
*/ |
| 5 |
+ |
#ifndef _RAD_LOOKUP_H_ |
| 6 |
+ |
#define _RAD_LOOKUP_H_ |
| 7 |
+ |
#ifdef __cplusplus |
| 8 |
+ |
extern "C" { |
| 9 |
+ |
#endif |
| 10 |
|
|
| 11 |
+ |
|
| 12 |
|
#include "copyright.h" |
| 13 |
|
|
| 14 |
|
typedef struct { |
| 78 |
|
* allocated table itself. |
| 79 |
|
*/ |
| 80 |
|
|
| 81 |
< |
extern int strcmp(); |
| 81 |
> |
#include <string.h> /* strcmp() */ |
| 82 |
|
|
| 77 |
– |
#ifdef NOPROTO |
| 78 |
– |
|
| 79 |
– |
extern int lu_init(); |
| 80 |
– |
extern LUENT *lu_find(); |
| 81 |
– |
extern void lu_delete(); |
| 82 |
– |
extern int lu_doall(); |
| 83 |
– |
extern void lu_done(); |
| 84 |
– |
extern unsigned long lu_shash(); |
| 85 |
– |
|
| 86 |
– |
#else |
| 87 |
– |
|
| 83 |
|
extern int lu_init(LUTAB *tbl, int nel); |
| 84 |
|
extern unsigned long lu_shash(char *s); |
| 85 |
|
extern LUENT *lu_find(LUTAB *tbl, char *key); |
| 87 |
|
extern int lu_doall(LUTAB *tbl, int (*f)()); |
| 88 |
|
extern void lu_done(LUTAB *tbl); |
| 89 |
|
|
| 90 |
+ |
|
| 91 |
+ |
#ifdef __cplusplus |
| 92 |
+ |
} |
| 93 |
|
#endif |
| 94 |
+ |
#endif /* _RAD_LOOKUP_H_ */ |
| 95 |
+ |
|