Ignore:
Timestamp:
Aug 26, 2007, 3:13:35 AM (18 years ago)
Author:
bird
Message:

made kDbg compile again (not linking yet though).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kStuff/include/k/kHlpString.h

    r3546 r3550  
    8585int     kHlpMemIComp(const void *pv1, const void *pv2, KSIZE cb);
    8686
     87#ifndef kHlpStrCat
     88char   *kHlpStrCat(char *psz1, const char *psz2);
     89#endif
     90#ifndef kHlpStrNCat
     91char   *kHlpStrNCat(char *psz1, const char *psz2, KSIZE cb);
     92#endif
    8793#ifndef kHlpStrChr
    8894char   *kHlpStrChr(const char *psz, int ch);
     95#endif
     96#ifndef kHlpStrRChr
     97char   *kHlpStrRChr(const char *psz, int ch);
    8998#endif
    9099#ifndef kHlpStrComp
     
    93102#ifndef kHlpStrNComp
    94103int     kHlpStrNComp(const char *psz1, const char *psz2, KSIZE cch);
     104#endif
     105#ifndef kHlpStrCopy
     106char   *kHlpStrCopy(char *psz1, const char *psz2);
     107#endif
     108#ifndef kHlpStrNCopy
     109char   *kHlpStrNCopy(char *psz1, const char *psz2, KSIZE cb);
    95110#endif
    96111#ifndef kHlpStrLen
Note: See TracChangeset for help on using the changeset viewer.