- Timestamp:
- Oct 28, 1999, 8:23:34 PM (26 years ago)
- Location:
- trunk/src/kernel32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/oslibmisc.cpp
r1221 r1496 1 /* $Id: oslibmisc.cpp,v 1. 3 1999-10-09 13:33:24 sandervl Exp $ */1 /* $Id: oslibmisc.cpp,v 1.4 1999-10-28 18:23:34 sandervl Exp $ */ 2 2 3 3 /* … … 283 283 pszFilename = strrchr(path, '\\'); /* find rightmost slash */ 284 284 if (pszFilename != NULL) 285 return ( pszFilename++); /* return pointer to next character */285 return (++pszFilename); /* return pointer to next character */ 286 286 287 287 pszFilename = strrchr(path, '/'); /* find rightmost slash */ 288 288 if (pszFilename != NULL) 289 return ( pszFilename++); /* return pointer to next character */289 return (++pszFilename); /* return pointer to next character */ 290 290 291 291 return (path); /* default return value */ -
trunk/src/kernel32/windllpeldr.cpp
r956 r1496 1 /* $Id: windllpeldr.cpp,v 1. 1 1999-09-15 23:39:07sandervl Exp $ */1 /* $Id: windllpeldr.cpp,v 1.2 1999-10-28 18:23:34 sandervl Exp $ */ 2 2 3 3 /* … … 59 59 60 60 strupr(szFileName); 61 if(!str str(szFileName, ".DLL")) {61 if(!strchr(szFileName, (int)'.')) { 62 62 strcat(szFileName,".DLL"); 63 63 }
Note:
See TracChangeset
for help on using the changeset viewer.