Changeset 3550 for trunk/kStuff/include/k/kHlpString.h
- Timestamp:
- Aug 26, 2007, 3:13:35 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kStuff/include/k/kHlpString.h
r3546 r3550 85 85 int kHlpMemIComp(const void *pv1, const void *pv2, KSIZE cb); 86 86 87 #ifndef kHlpStrCat 88 char *kHlpStrCat(char *psz1, const char *psz2); 89 #endif 90 #ifndef kHlpStrNCat 91 char *kHlpStrNCat(char *psz1, const char *psz2, KSIZE cb); 92 #endif 87 93 #ifndef kHlpStrChr 88 94 char *kHlpStrChr(const char *psz, int ch); 95 #endif 96 #ifndef kHlpStrRChr 97 char *kHlpStrRChr(const char *psz, int ch); 89 98 #endif 90 99 #ifndef kHlpStrComp … … 93 102 #ifndef kHlpStrNComp 94 103 int kHlpStrNComp(const char *psz1, const char *psz2, KSIZE cch); 104 #endif 105 #ifndef kHlpStrCopy 106 char *kHlpStrCopy(char *psz1, const char *psz2); 107 #endif 108 #ifndef kHlpStrNCopy 109 char *kHlpStrNCopy(char *psz1, const char *psz2, KSIZE cb); 95 110 #endif 96 111 #ifndef kHlpStrLen
Note:
See TracChangeset
for help on using the changeset viewer.