diff options
author | ilsimo <ilsimo> | 2006-01-11 22:04:08 +0000 |
---|---|---|
committer | ilsimo <ilsimo> | 2006-01-11 22:04:08 +0000 |
commit | fade58ba2bf869e7e872d3003ac0962cb8f1233c (patch) | |
tree | afaaf3de0c891227f50985258938a5136f65ac04 /common/os_calls.c | |
parent | 85835218dc44103ab0388358fa7b824eea57d95f (diff) | |
download | xrdp-proprietary-fade58ba2bf869e7e872d3003ac0962cb8f1233c.tar.gz xrdp-proprietary-fade58ba2bf869e7e872d3003ac0962cb8f1233c.zip |
added g_strcmp
Diffstat (limited to 'common/os_calls.c')
-rw-r--r-- | common/os_calls.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/common/os_calls.c b/common/os_calls.c index 088424ec..5895449d 100644 --- a/common/os_calls.c +++ b/common/os_calls.c @@ -690,6 +690,13 @@ g_strdup(char* in) /*****************************************************************************/ int +g_strcmp(char* c1, char* c2) +{ + return strcmp(c1, c2); +} + +/*****************************************************************************/ +int g_strncmp(char* c1, char* c2, int len) { return strncmp(c1, c2, len); |