Changeset 407
- Timestamp:
 - Jan 15, 2006, 1:54:23 AM (20 years ago)
 - File:
 - 
      
- 1 edited
 
- 
          
  trunk/src/lib/kDep.c (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/src/lib/kDep.c
r406 r407 67 67 68 68 69 /** 70 * Corrects all slashes to unix slashes. 71 * 72 * @returns pszFilename. 73 * @param pszFilename The filename to correct. 74 */ 75 static char *fixslash(char *pszFilename) 76 { 77 char *psz = pszFilename; 78 while ((psz = strchr(psz, '\\')) != NULL) 79 *psz++ = '/'; 80 return pszFilename; 81 } 82 83 69 84 #ifdef __WIN32__ 70 85 /** … … 365 380 #endif 366 381 } 367 368 369 #ifndef __OS2__370 /**371 * Corrects all slashes to unix slashes.372 *373 * @returns pszFilename.374 * @param pszFilename The filename to correct.375 */376 static char *fixslash(char *pszFilename)377 {378 char *psz = pszFilename;379 while ((psz = strchr(psz, '\\')) != NULL)380 *psz++ = '/';381 return pszFilename;382 }383 #endif384 382 385 383  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  