Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • obarray.c

    r535d68b raf1920fd  
    1010 */
    1111
    12 // Helper method: Lookup a key in the obarray. If the key exists,
    13 // return its index, and the interned value in *val. Otherwise, return
    14 // the index it should be inserted at.
     12/* Helper method: Lookup a key in the obarray. If the key exists,
     13 * return its index, and the interned value in *val. Otherwise, return
     14 * the index it should be inserted at.
     15 */
    1516int owl_obarray_lookup(owl_obarray *oa, char * key, char ** val) /*noproto*/
    1617{
     
    3940}
    4041
    41 // Returns NULL if the string doesn't exist in the obarray
     42/* Returns NULL if the string doesn't exist in the obarray */
    4243char * owl_obarray_find(owl_obarray *oa, char * string)
    4344{
     
    4748}
    4849
    49 // Inserts the string into the obarray if it doesn't exist
     50/* Inserts the string into the obarray if it doesn't exist */
    5051char * owl_obarray_insert(owl_obarray *oa, char * string)
    5152{
Note: See TracChangeset for help on using the changeset viewer.