Home | History | Annotate | Download | only in hdr

Lines Matching refs:pTarget

75   #define		smlLibStrcpy(pTarget,pSource)		 	(char*)StrCopy((char*)pTarget,(char*)pSource)
76 #define smlLibStrncpy(pTarget,pSource,count) (char*)StrNCopy((char*)pTarget,(char*)pSource,count)
77 #define smlLibStrcat(pTarget,pSource) (char*)StrCat((char*)pTarget,(char*)pSource)
78 #define smlLibStrcmp(pTarget,pSource) StrCompare((char*)pTarget,(char*)pSource)
79 #define smlLibStrncmp(pTarget,pSource,count) StrNCompare((char*)pTarget,(char*)pSource,count)
84 SML_API_DEF String_t smlLibStrcpy(const char *pTarget, const char *pSource);
85 SML_API_DEF String_t smlLibStrncpy(const char *pTarget, const char *pSource, int count);
86 SML_API_DEF String_t smlLibStrcat(const char *pTarget, const char *pSource);
87 SML_API_DEF int smlLibStrcmp(const char *pTarget, const char *pSource);
88 SML_API_DEF int smlLibStrncmp(const char *pTarget, const char *pSource, int count);
102 #define smlLibStrncat(pTarget,pSource,count) (char*)StrNCat((char*)pTarget,(char*)pSource,count)
105 SML_API_DEF String_t smlLibStrncat(const char *pTarget, const char *pSource, int count);