Lines Matching defs:s1
201 * Concatenate tchar string s2 on the end of s1. S1's space must be large
202 * enough. Return s1.
205 strcat_(tchar *s1, tchar *s2)
209 os1 = s1;
210 while (*s1++)
212 --s1;
213 while (*s1++ = *s2++)
219 * Compare tchar strings: s1>s2: >0 s1==s2: 0 s1<s2: <0
227 strcmp_(tchar *s1, tchar *s2)
229 while (*s1 == *s2++) {
230 if (*s1++ == (tchar)0) {
234 return (((unsigned long)*s1) - ((unsigned long)*(--s2)));
241 strcoll_(tchar *s1, tchar *s2)
246 tstostr(buf1, s1);
252 * Copy tchar string s2 to s1. s1 must be large enough.
253 * return s1
256 strcpy_(tchar *s1, tchar *s2)
260 os1 = s1;
261 while (*s1++ = *s2++)