mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-04-23 15:33:43 +00:00
* GSWAdaptors/common/GSWUtil.c|.h (strcasestr): removed CONST from
declaration. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@16022 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a5911c4f5a
commit
696cc4ae31
3 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2003-02-20 Mirko Viviani <mirko.viviani@rccr.cremona.it>
|
||||
|
||||
* GSWAdaptors/common/GSWUtil.c|.h (strcasestr): removed CONST from
|
||||
declaration.
|
||||
|
||||
2003-02-19 Mirko Viviani <mirko.viviani@rccr.cremona.it>
|
||||
|
||||
* GSWeb.framework/GSWDebug.h: fixed #define.
|
||||
|
|
|
@ -251,7 +251,7 @@ char* SafeStrdup(CONST char* p_pszString)
|
|||
return (p_pszString ? strdup(p_pszString) : NULL);
|
||||
};
|
||||
|
||||
CONST char* strcasestr(CONST char* p_pszString,CONST char* p_pszSearchedString)
|
||||
char* strcasestr(CONST char* p_pszString,CONST char* p_pszSearchedString)
|
||||
{
|
||||
if (p_pszString && p_pszSearchedString)
|
||||
{
|
||||
|
|
|
@ -108,7 +108,7 @@ int DeleteTrailingSpaces(char* p_pszString);
|
|||
|
||||
int SafeStrlen(CONST char* p_pszString);
|
||||
char* SafeStrdup(CONST char* p_pszString);
|
||||
CONST char* strcasestr(CONST char* p_pszString,CONST char* p_pszSearchedString);
|
||||
char* strcasestr(CONST char* p_pszString,CONST char* p_pszSearchedString);
|
||||
|
||||
|
||||
//#include <netdb.h>
|
||||
|
|
Loading…
Reference in a new issue