Moving micasa 1.5 trunk to Novell forge.

This commit is contained in:
Cameron (Kamran) Mashayekhi
2005-10-11 19:51:00 +00:00
parent 082db33275
commit efe0a5e13c
691 changed files with 116628 additions and 0 deletions

37
include/sscs_string.h Normal file
View 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 */