bzr branch
http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk
3
by Gustav Hartvigsson
Fixed a few things... |
1 |
#ifndef __H_SIMPLE_TYPE_SYSTEM__
|
2 |
#define __H_SIMPLE_TYPE_SYSTEM__
|
|
3 |
||
4 |
#define SIMPLE_TYPE_SYSTEM_VERSION_MAJOR 0
|
|
5 |
#define SIMPLE_TYPE_SYSTEM_VERSION_MINOR 0
|
|
6 |
#define SIMPLE_TYPE_SYSTEM_VERSION_PATCH 1
|
|
7 |
||
8 |
||
9 |
#include "baseobject.h" |
|
10 |
#include "Error.h" |
|
11 |
#include "Func.h" |
|
12 |
||
13 |
char * s_get_version_string (); |
|
14 |
int s_get_version_major (); |
|
15 |
int s_get_version_minor (); |
|
16 |
int s_get_version_patch (); |
|
17 |
||
18 |
char * s_string_new (const char * s); |
|
19 |
char * s_string_new_with_len (const char * s, size_t len); |
|
5.2.1
by Gustav Hartvigsson
Started work on the Map (SMap) data structure. |
20 |
|
21 |
void s_print (const char * string); |
|
22 |
||
3
by Gustav Hartvigsson
Fixed a few things... |
23 |
#endif
|
24 |