From fade58ba2bf869e7e872d3003ac0962cb8f1233c Mon Sep 17 00:00:00 2001 From: ilsimo Date: Wed, 11 Jan 2006 22:04:08 +0000 Subject: added g_strcmp --- common/os_calls.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'common/os_calls.c') 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 @@ -688,6 +688,13 @@ g_strdup(char* in) return p; } +/*****************************************************************************/ +int +g_strcmp(char* c1, char* c2) +{ + return strcmp(c1, c2); +} + /*****************************************************************************/ int g_strncmp(char* c1, char* c2, int len) -- cgit v1.2.1