- Timestamp:
- Aug 15, 2009, 7:08:21 PM (15 years ago)
- Branches:
- master, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 6249e137
- Parents:
- 5b256de
- git-author:
- Anders Kaseorg <andersk@mit.edu> (07/28/09 22:15:24)
- git-committer:
- Anders Kaseorg <andersk@mit.edu> (08/15/09 19:08:21)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
obarray.c
re19eb97 rb1d5517 14 14 * the index it should be inserted at. 15 15 */ 16 int owl_obarray_lookup( owl_obarray *oa, const char * key, const char ** val) /*noproto*/16 int owl_obarray_lookup(const owl_obarray *oa, const char * key, const char ** val) /*noproto*/ 17 17 { 18 18 int first, last, mid; … … 41 41 42 42 /* Returns NULL if the string doesn't exist in the obarray */ 43 const char * owl_obarray_find( owl_obarray *oa, const char * string)43 const char * owl_obarray_find(const owl_obarray *oa, const char * string) 44 44 { 45 45 const char *v;
Note: See TracChangeset
for help on using the changeset viewer.