Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • obarray.c

    raf1920fd r535d68b  
    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.
    15  */
     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.
    1615int owl_obarray_lookup(owl_obarray *oa, char * key, char ** val) /*noproto*/
    1716{
     
    4039}
    4140
    42 /* Returns NULL if the string doesn't exist in the obarray */
     41// Returns NULL if the string doesn't exist in the obarray
    4342char * owl_obarray_find(owl_obarray *oa, char * string)
    4443{
     
    4847}
    4948
    50 /* Inserts the string into the obarray if it doesn't exist */
     49// Inserts the string into the obarray if it doesn't exist
    5150char * owl_obarray_insert(owl_obarray *oa, char * string)
    5251{
Note: See TracChangeset for help on using the changeset viewer.