diff options
Diffstat (limited to 'common/os_calls.h')
-rw-r--r-- | common/os_calls.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/common/os_calls.h b/common/os_calls.h index de369246..2fd0f6f0 100644 --- a/common/os_calls.h +++ b/common/os_calls.h @@ -112,10 +112,10 @@ g_strcat(char* dest, char* src); char* g_strdup(char* in); int -g_strcmp(char* c1, char* c2); -int g_strncmp(char* c1, char* c2, int len); int +g_strncasecmp(char* c1, char* c2, int len); +int g_atoi(char* str); int g_pos(char* str, char* to_find); @@ -154,6 +154,8 @@ void g_clearenv(void); int g_setenv(char* name, char* value, int rewrite); +char* +g_getenv(char* name); int g_exit(int exit_code); int |