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

  • Committer: Gustav Hartvigsson
  • Date: 2014-12-22 11:32:35 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20141222113235-r6jrin8cj6p8m13w
* Fixed some of the build warnings.
* added TRUE and FALSE definitons.
* added S_TYPES enum.

* TODO:
  * Convert to CMake.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#include "defs.h"
27
27
#include "stddef.h"
28
28
 
 
29
 
29
30
BEGIN_DECLS
30
31
 
31
32
char * s_string_new (const char * s);
32
33
char * s_string_new_with_len (const char * s, size_t len);
33
34
 
34
 
void s_print (const char * string);
 
35
void s_print (const char * format, ...);
35
36
 
36
37
BEGIN_DECLS
37
38