/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/SimpleTypeSystem.c

  • Committer: Gustav Hartvigsson
  • Date: 2016-09-21 14:11:22 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20160921141122-bc75r3e2enc04m8l
* Reorderd includes in SimpleTypeSystem.h
* Started work on SGlobalNotify
* Small changes to time function

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
THE SOFTWARE.
21
21
*/
22
22
 
23
 
#include "SimpleTypeSystem.h"
24
23
 
25
24
#include <stdlib.h>
26
25
#include <string.h>
27
26
 
 
27
#include "SimpleTypeSystem.h"
 
28
 
 
29
 
28
30
schar *
29
31
s_get_version_string () {
30
32
  schar * ret_val = s_malloc ( sizeof(char) * 32);
49
51
  return SIMPLE_TYPE_SYSTEM_VERSION_PATCH;
50
52
}
51
53
 
 
54
void
 
55
s_teardown () {
 
56
  s_global_notify_teardown ();
 
57
  s_mm_cleanup ();
 
58
}
 
59