1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef __H_SIMPLE_TYPE_SYSTEM__
#define __H_SIMPLE_TYPE_SYSTEM__
#define SIMPLE_TYPE_SYSTEM_VERSION_MAJOR 0
#define SIMPLE_TYPE_SYSTEM_VERSION_MINOR 0
#define SIMPLE_TYPE_SYSTEM_VERSION_PATCH 1
#include "baseobject.h"
#include "Error.h"
#include "Func.h"
char * s_get_version_string ();
int s_get_version_major ();
int s_get_version_minor ();
int s_get_version_patch ();
char * s_string_new (const char * s);
char * s_string_new_with_len (const char * s, size_t len);
void s_print (const char * string);
#endif
|