Changeset b1d5517


Ignore:
Timestamp:
Aug 15, 2009, 7:08:21 PM (15 years ago)
Author:
Anders Kaseorg <andersk@mit.edu>
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)
Message:
Add const qualifiers for owl_obarray *.

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
File:
1 edited

Legend:

Unmodified
Added
Removed
  • obarray.c

    re19eb97 rb1d5517  
    1414 * the index it should be inserted at.
    1515 */
    16 int owl_obarray_lookup(owl_obarray *oa, const char * key, const char ** val) /*noproto*/
     16int owl_obarray_lookup(const owl_obarray *oa, const char * key, const char ** val) /*noproto*/
    1717{
    1818  int first, last, mid;
     
    4141
    4242/* Returns NULL if the string doesn't exist in the obarray */
    43 const char * owl_obarray_find(owl_obarray *oa, const char * string)
     43const char * owl_obarray_find(const owl_obarray *oa, const char * string)
    4444{
    4545  const char *v;
Note: See TracChangeset for help on using the changeset viewer.