7
* Utils, a collection of utility functions that are not directly relaned to
10
* For game utility functions see <tt>game_utils.h</tt>
16
* We assume that this is the maximum size that any string that is created at
17
* runtime will ever be.
19
#define _STR_MAX_LEN 2048
22
* Create a new string with just enough space.
24
* @param format A printf-format string.
25
* @param ... The variables.
27
* @returns A C String on succses
28
* @returns NULL on fail.
30
char * string_new_printf (char * format, ...);
34
#endif /*__H_UTILS__*/