Changeset 3573 for trunk/kStuff/kHlp/Bare/kHlpBarePath.c
- Timestamp:
- Aug 31, 2007, 6:09:23 AM (18 years ago)
- Location:
- trunk/kStuff/kHlp/Bare
- Files:
-
- 1 added
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/kStuff/kHlp/Bare/kHlpBarePath.c
r3570 r3573 29 29 * Header Files * 30 30 *******************************************************************************/ 31 #include <k/k Ldr.h>32 #include "kLdrHlp.h"31 #include <k/kHlpPath.h> 32 #include <k/kHlpString.h> 33 33 34 34 … … 40 40 * @param pszFilename The filename to parse. 41 41 */ 42 char *k ldrHlpGetFilename(const char *pszFilename)42 char *kHlpGetFilename(const char *pszFilename) 43 43 { 44 44 const char *pszLast = NULL; … … 75 75 * @param pszFilename The filename to parse. 76 76 */ 77 char *k ldrHlpGetSuff(const char *pszFilename)77 char *kHlpGetSuff(const char *pszFilename) 78 78 { 79 79 const char *pszDot = NULL; 80 pszFilename = k ldrHlpGetFilename(pszFilename);80 pszFilename = kHlpGetFilename(pszFilename); 81 81 for (;;) 82 82 { … … 103 103 * @param pszFilename The filename to parse. 104 104 */ 105 char *k ldrHlpGetExt(const char *pszFilename)105 char *kHlpGetExt(const char *pszFilename) 106 106 { 107 char *psz = k ldrHlpGetSuff(pszFilename);107 char *psz = kHlpGetSuff(pszFilename); 108 108 return *psz ? psz + 1 : psz; 109 109 } … … 118 118 * @param pszFilename The filename to parse. 119 119 */ 120 int k ldrHlpIsFilenameOnly(const char *pszFilename)120 int kHlpIsFilenameOnly(const char *pszFilename) 121 121 { 122 122 for (;;)
Note:
See TracChangeset
for help on using the changeset viewer.