/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/Func.h

  • Committer: Gustav Hartvigsson
  • Date: 2015-04-10 15:24:35 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20150410152435-uumooulvwmn02rxb
* Renamed DynamicArray to SDynamicArray.
* Renamed dynamic_array_*() functions to s_dynamic_array_*()
* Fixed indentation problem in Error.h and defs.h
* Removed dependency on stdbool.h
* Added sboolean
* Addad sconstpointer
* Reverted SMap back no not depending on SObject.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
#include "defs.h"
29
29
#include "utils.h"
30
30
#include "baseobject.h"
31
 
#include <stdbool.h>
32
31
 
33
32
BEGIN_DECLS
34
33
 
91
90
 * 
92
91
 * compare parameter 1 with parameter 2.
93
92
 */
94
 
typedef bool (* CompFunc)(void*, void*);
 
93
typedef sboolean (* CompFunc)(void*, void*);
95
94
 
96
95
typedef char * (* CharFunc)();
97
96
 
 
97
 
98
98
END_DECLS
99
99
 
100
100
#endif