/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk

« back to all changes in this revision

Viewing changes to libssts/Map.h

  • Committer: Gustav Hartvigsson
  • Date: 2016-01-26 12:26:20 UTC
  • mto: This revision was merged to the branch mainline in revision 111.
  • Revision ID: gustav.hartvigsson@gmail.com-20160126122620-oul2w8c1pgen0dbx
* Fixed SMap, for the time being...

Show diffs side-by-side

added added

removed removed

Lines of Context:
125
125
 */
126
126
SMap *
127
127
s_map_new (CompFunc comp_func,
128
 
                  HashFunc key_hash_func,
129
 
                  FreeFunc free_key,
130
 
                  FreeFunc free_value);
 
128
           HashFunc key_hash_func,
 
129
           FreeFunc free_key,
 
130
           FreeFunc free_value);
131
131
 
132
132
/** @breif
133
133
 * This function frees an instance of an SMap.
159
159
spointer
160
160
s_map_get (SMap * self, spointer key);
161
161
 
 
162
 
 
163
SMapItem *
 
164
s_map_get_item (SMap * self, spointer key);
 
165
 
162
166
/**
163
167
 * This function removes an item from 
164
168
 */