Ignore:
Timestamp:
Aug 31, 2007, 6:09:23 AM (18 years ago)
Author:
bird
Message:

kHlp work...

Location:
trunk/kStuff/kHlp/Bare
Files:
1 added
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/kStuff/kHlp/Bare/kHlpBarePath.c

    r3570 r3573  
    2929*   Header Files                                                               *
    3030*******************************************************************************/
    31 #include <k/kLdr.h>
    32 #include "kLdrHlp.h"
     31#include <k/kHlpPath.h>
     32#include <k/kHlpString.h>
    3333
    3434
     
    4040 * @param   pszFilename     The filename to parse.
    4141 */
    42 char   *kldrHlpGetFilename(const char *pszFilename)
     42char   *kHlpGetFilename(const char *pszFilename)
    4343{
    4444    const char *pszLast = NULL;
     
    7575 * @param   pszFilename     The filename to parse.
    7676 */
    77 char   *kldrHlpGetSuff(const char *pszFilename)
     77char   *kHlpGetSuff(const char *pszFilename)
    7878{
    7979    const char *pszDot = NULL;
    80     pszFilename = kldrHlpGetFilename(pszFilename);
     80    pszFilename = kHlpGetFilename(pszFilename);
    8181    for (;;)
    8282    {
     
    103103 * @param   pszFilename     The filename to parse.
    104104 */
    105 char   *kldrHlpGetExt(const char *pszFilename)
     105char   *kHlpGetExt(const char *pszFilename)
    106106{
    107     char *psz = kldrHlpGetSuff(pszFilename);
     107    char *psz = kHlpGetSuff(pszFilename);
    108108    return *psz ? psz + 1 : psz;
    109109}
     
    118118 * @param   pszFilename     The filename to parse.
    119119 */
    120 int kldrHlpIsFilenameOnly(const char *pszFilename)
     120int kHlpIsFilenameOnly(const char *pszFilename)
    121121{
    122122    for (;;)
Note: See TracChangeset for help on using the changeset viewer.