spiegel-keyman/developer/kmcompx/include/xstring.h
Marc Durdin 6c12bbc6cd refactor(developer): fixup path to tests
tidied up +removed unnecessary files
checked contents of files+included a few new functions needed for myVersion
changed datatypes in CheckForDuplicates
tidy up more paths
CheckFileConsistency: not able to fully adapt for use of char16_t on non windows p.
	-> used char16_t + commented out some AddWarning().
2022-07-20 17:49:17 +02:00

19 lines
No EOL
649 B
C

#include "kmx_u16.h"
PKMX_WCHAR incxstr(PKMX_WCHAR p);
PKMX_WCHAR decxstr(PKMX_WCHAR p, PKMX_WCHAR pStart);
int xstrlen(PKMX_WCHAR p);
int xstrlen_ignoreifopt(PKMX_WCHAR p);
int xstrpos(PKMX_WCHAR p1, PKMX_WCHAR p);
PKMX_WCHAR xstrchr(PKMX_WCHAR buf, PKMX_WCHAR chr);
int xchrcmp(PKMX_WCHAR ch1, PKMX_WCHAR ch2);
//**** _S2 old ******************************************************************************
//PWSTR incxstr(PWSTR p);
//PWSTR decxstr(PWSTR p, PWSTR pStart);
//int xstrlen(PWSTR p);
//int xstrlen_ignoreifopt(PWSTR p);
//int xstrpos(PWSTR p1, PWSTR p);
//PWSTR xstrchr(PWSTR buf, PWSTR chr);
//int xchrcmp(PWSTR ch1, PWSTR ch2);