Changeset 7521 for trunk/src/crtdll/string.c
- Timestamp:
- Dec 2, 2001, 12:06:23 AM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/crtdll/string.c
r4672 r7521 1 /* $Id: string.c,v 1. 1 2000-11-22 01:11:01 phallerExp $ */1 /* $Id: string.c,v 1.2 2001-12-01 23:06:23 bird Exp $ */ 2 2 3 3 /* 4 4 * The C RunTime DLL 5 * 5 * 6 6 * Implements C run-time functionality as known from UNIX. 7 7 * … … 19 19 //#include <odin.h> 20 20 //#include <os2win.h> 21 //#include <ctype.h> 21 #include <ctype.h> /* toupper proto */ 22 22 //#include <heapstring.h> 23 23 #include <string.h> … … 129 129 { 130 130 LPSTR y=x; 131 131 132 132 dprintf2(("CRTDLL: _strupr(%s)\n", 133 133 x)); … … 342 342 return (strstr(str1, str2)); 343 343 } 344 344 345 345 346 346 /********************************************************************* … … 416 416 * _strdec (CRTDLL.282) 417 417 * 418 * Return the byte before str2 while it is >= to str1. 418 * Return the byte before str2 while it is >= to str1. 419 419 * 420 420 * PARAMS … … 509 509 LPSTR p1; 510 510 LPSTR p2; 511 511 512 512 if (str && *str) 513 513 for (p1 = str, p2 = str + strlen(str) - 1; p2 > p1; ++p1, --p2) … … 569 569 { 570 570 //_swab(s1, s2, i); 571 571 572 572 if (len > 1) 573 573 {
Note:
See TracChangeset
for help on using the changeset viewer.