ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/lookup.h
(Generate patch)

Comparing ray/src/common/lookup.h (file contents):
Revision 2.5 by gwlarson, Wed Sep 2 18:42:11 1998 UTC vs.
Revision 2.9 by greg, Fri Jun 27 06:53:21 2003 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1998 Silicon Graphics, Inc. */
2 <
3 < /* SCCSid "$SunId$ SGI" */
4 <
1 > /* RCSid $Id$ */
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   typedef struct {
12          char    *key;                   /* key name */
# Line 73 | Line 75 | typedef struct {
75   * allocated table itself.
76   */
77  
78 < extern int      lu_init();
77 < extern LUENT    *lu_find();
78 < extern void     lu_delete();
79 < extern int      lu_doall();
80 < extern void     lu_done();
81 < extern unsigned long    lu_shash();
78 > #include <string.h> /* strcmp() */
79  
80 < extern int      strcmp();
80 > extern int      lu_init(LUTAB *tbl, int nel);
81 > extern unsigned long    lu_shash(char *s);
82 > extern LUENT    *lu_find(LUTAB *tbl, char *key);
83 > extern void     lu_delete(LUTAB *tbl, char *key);
84 > extern int      lu_doall(LUTAB *tbl, int (*f)());
85 > extern void     lu_done(LUTAB *tbl);
86 >
87 >
88 > #ifdef __cplusplus
89 > }
90 > #endif
91 > #endif /* _RAD_LOOKUP_H_ */
92 >

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines