/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: 2015-04-07 08:35:51 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20150407083551-eigkistus394ds7e
* Made the code compile using CMake.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
/**
39
39
 * prints a red message with the prefix [ERR]
40
40
 */
41
 
void s_err_print (const char * format, ...);
 
41
void s_err_print (char * format, ...);
42
42
 
43
43
/**
44
44
 * debug_print is a function that only prints if compiled with the debug
45
45
 * flag not unset.
46
46
 */
47
 
void s_dbg_print (const char * format, ...);
 
47
void s_dbg_print (char * format, ...);
48
48
BEGIN_DECLS
49
49
 
50
50
#endif