mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 08:25:32 +00:00
28 lines
No EOL
902 B
C
28 lines
No EOL
902 B
C
#pragma once
|
|
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);
|
|
|
|
/**/
|
|
/*
|
|
PKMX_WCHAR incxstr(PKMX_WCHAR p);
|
|
PKMX_WCHAR decxstr(PKMX_WCHAR p, PKMX_WCHAR pStart);
|
|
int xstrlen(PKMX_WCHAR p);
|
|
int xstrlen_S2(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);
|