Moving micasa 1.5 trunk to Novell forge.
This commit is contained in:
37
include/sscs_string.h
Normal file
37
include/sscs_string.h
Normal file
@@ -0,0 +1,37 @@
|
||||
/****************************************************************************
|
||||
%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 */
|
||||
|
||||
Reference in New Issue
Block a user