diff options
author | jsorg71 <jsorg71> | 2005-09-25 04:08:26 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2005-09-25 04:08:26 +0000 |
commit | 5d1c7fb6b5428d7c982fddf2826e5614e31b88a8 (patch) | |
tree | 2ebb3dec8639bb2ee4ae2481d487e6537b42c809 /common/os_calls.h | |
parent | 19d37b565cfadc7e7e0e643b93b16aeefe237a5c (diff) | |
download | xrdp-proprietary-5d1c7fb6b5428d7c982fddf2826e5614e31b88a8.tar.gz xrdp-proprietary-5d1c7fb6b5428d7c982fddf2826e5614e31b88a8.zip |
case insesitive file sections
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 |