/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 src/Map.h

  • Committer: Gustav Hartvigsson
  • Date: 2013-09-09 17:02:23 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20130909170223-l5fk6cbz0q07qfxi
* Added some notes... bah

Show diffs side-by-side

added added

removed removed

Lines of Context:
134
134
 * This function adds a key/value pair to an SMap.
135
135
 * 
136
136
 * @param self the SMap to add the key/value pair to.
137
 
 * @param key the key that is used to 
 
137
 * @param key the key that is used to
 
138
 *
 
139
 * @TODO:
 
140
 *  make it return false on failiour, or some other nastiness.
138
141
 */
139
142
void s_map_add (SMap * self ,void * key, void * value);
140
143
 
147
150
 */
148
151
void * s_map_get (SMap * self, void * key);
149
152
 
 
153
/**
 
154
 * @TODO
 
155
 */
 
156
void  s_map_remove (SMap * self, void * key);
 
157
 
150
158
#endif