about summary refs log tree commit diff
path: root/src/engine/e_system.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/e_system.h')
-rw-r--r--src/engine/e_system.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/engine/e_system.h b/src/engine/e_system.h
index bfd8cd8c..1fd929e8 100644
--- a/src/engine/e_system.h
+++ b/src/engine/e_system.h
@@ -520,6 +520,13 @@ void swap_endian(void *data, unsigned elem_size, unsigned num);
 
 /* #define cache_prefetch(addr) __builtin_prefetch(addr) */
 
+/*typedef unsigned char [256] pstr;
+void pstr_format(pstr *str, )*/
+
+void str_append(char *dst, const char *src, int dst_size);
+void str_copy(char *dst, const char *src, int dst_size);
+void str_format(char *buffer, int buffer_size, const char *format, ...);
+
 #ifdef __cplusplus
 }
 #endif