38 lines
940 B
C
38 lines
940 B
C
|
/****************************************************************************
|
||
|
%name: sscs_string.h %
|
||
|
%version: 1 %
|
||
|
%date_modified: Wed Mar 09 11:16:19 2005 %
|
||
|
%version: 1 %
|
||
|
%date_modified: Wed Mar 09 11:16:19 2005 %
|
||
|
*
|
||
|
****************************************************************************
|
||
|
* This is the source file for the SecretStore server string functions.
|
||
|
****************************************************************************/
|
||
|
#ifndef _SSCS_STRING_H_
|
||
|
#define _SSCS_STINRG_H_
|
||
|
|
||
|
#include <string.h>
|
||
|
|
||
|
#define sscs_strcmp strcmp
|
||
|
#define sscs_strcpy strcpy
|
||
|
#define sscs_strcat strcat
|
||
|
#define sscs_strchr strchr
|
||
|
#define sscs_strlen strlen
|
||
|
#define sscs_strstr strstr
|
||
|
#define sscs_strncat strncat
|
||
|
#define sscs_strncmp strncmp
|
||
|
#define sscs_strncpy strncpy
|
||
|
|
||
|
#ifdef N_PLAT_UNIX
|
||
|
|
||
|
#define sscs_stricmp stricmp
|
||
|
|
||
|
#else
|
||
|
|
||
|
#define sscs_stricmp _stricmp
|
||
|
|
||
|
#endif
|
||
|
|
||
|
#endif /* SSCS_STRING_H */
|
||
|
|