Ignore:
Timestamp:
Nov 4, 2000, 8:55:45 PM (25 years ago)
Author:
umoeller
Message:

Updated string helpers.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/helpers/stringh.h

    r7 r12  
    5959    ULONG strhStrip(PSZ psz);
    6060
     61    PSZ strhins(const char *pcszBuffer,
     62                ULONG ulInsertOfs,
     63                const char *pcszInsert);
     64
     65    ULONG strhrpl(PSZ *ppszBuf,
     66                  ULONG ulOfs,
     67                  const char *pcszSearch,
     68                  const char *pcszReplace,
     69                  PULONG pulAfterOfs);
     70
    6171    ULONG strhWords(PSZ psz);
    6272
     
    101111    PSZ strhFindNextLine(PSZ pszSearchIn, PULONG pulOffset);
    102112
    103     PSZ strhFindKey(PSZ pszSearchIn,
    104                     PSZ pszKey,
    105                     BOOL *pfIsAllUpperCase);
    106 
    107     PSZ strhGetParameter(PSZ pszSearchIn, PSZ pszKey, PSZ pszCopyTo, ULONG cbCopyTo);
    108 
    109     PSZ strhSetParameter(PSZ* ppszSearchIn,
    110                          PSZ pszKey,
     113    PSZ strhFindKey(const char *pcszSearchIn,
     114                    const char *pcszKey,
     115                    PBOOL pfIsAllUpperCase);
     116
     117    PSZ strhGetParameter(const char *pcszSearchIn,
     118                         const char *pcszKey,
     119                         PSZ pszCopyTo,
     120                         ULONG cbCopyTo);
     121
     122    PSZ strhSetParameter(PSZ* ppszBuf,
     123                         const char *pcszKey,
    111124                         PSZ pszNewParam,
    112125                         BOOL fRespectCase);
Note: See TracChangeset for help on using the changeset viewer.