#pragma once /* locale.hpp Сравнение без учета регистра, преобразование регистра */ /* Copyright (c) 1996 Eugene Roshal Copyright (c) 2000 Far Group All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the authors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ extern const wchar_t DOS_EOL_fmt[]; extern const wchar_t UNIX_EOL_fmt[]; extern const wchar_t MAC_EOL_fmt[]; extern const wchar_t WIN_EOL_fmt[]; inline int __cdecl StrLength(const wchar_t *str) { return (int) wcslen(str); } inline bool IsSpace(wchar_t x) { return x==L' ' || x==L'\t' || x==0x3000; } inline bool IsEol(wchar_t x) { return x==L'\r' || x==L'\n'; } inline bool IsSpaceOrEos(wchar_t x) { return !x || IsSpace(x); } inline wchar_t __cdecl Upper(wchar_t Ch) { if ( (Ch & 0x7f) == Ch) { if (Ch >= 'a' && Ch <= 'z') { Ch-= 'a' - 'A'; } } else { WINPORT(CharUpperBuff)(&Ch, 1); } return Ch; } inline wchar_t __cdecl Lower(wchar_t Ch) { if ( (Ch & 0x7f) == Ch) { if (Ch >= 'A' && Ch <= 'Z') { Ch+= 'a' - 'A'; } } else { WINPORT(CharLowerBuff)(&Ch, 1); } return Ch; } inline int __cdecl StrCmpNNI(const wchar_t *s1, int n1, const wchar_t *s2, int n2) { return WINPORT(CompareString)(0,NORM_IGNORECASE|NORM_STOP_ON_NULL|SORT_STRINGSORT,s1,n1,s2,n2)-2; } inline int __cdecl StrCmpNI(const wchar_t *s1, const wchar_t *s2, int n) { return StrCmpNNI(s1,n,s2,n); } inline int __cdecl StrCmpI(const wchar_t *s1, const wchar_t *s2) { return WINPORT(CompareString)(0,NORM_IGNORECASE|SORT_STRINGSORT,s1,-1,s2,-1)-2; } inline int __cdecl StrCmpNN(const wchar_t *s1, int n1, const wchar_t *s2, int n2) { return WINPORT(CompareString)(0,NORM_STOP_ON_NULL|SORT_STRINGSORT,s1,n1,s2,n2)-2; } inline int __cdecl StrCmpN(const wchar_t *s1, const wchar_t *s2, int n) { return StrCmpNN(s1,n,s2,n); } inline int __cdecl StrCmp(const wchar_t *s1, const wchar_t *s2) { return WINPORT(CompareString)(0,SORT_STRINGSORT,s1,-1,s2,-1)-2; } inline int __cdecl IsUpper(wchar_t Ch) { return WINPORT(IsCharUpper)(Ch); } inline int __cdecl IsLower(wchar_t Ch) { return WINPORT(IsCharLower)(Ch); } inline int __cdecl IsAlpha(wchar_t Ch) { return WINPORT(IsCharAlpha)(Ch); } inline int __cdecl IsAlphaNum(wchar_t Ch) { return WINPORT(IsCharAlphaNumeric)(Ch); } inline void __cdecl UpperBuf(wchar_t *Buf, int Length) { WINPORT(CharUpperBuff)(Buf, Length); } inline void __cdecl LowerBuf(wchar_t *Buf,int Length) { WINPORT(CharLowerBuff)(Buf, Length); } inline void __cdecl StrUpper(wchar_t *s1) { UpperBuf(s1, StrLength(s1)); } inline void __cdecl StrLower(wchar_t *s1) { LowerBuf(s1, StrLength(s1)); } const wchar_t * __cdecl StrStr(const wchar_t *str1, const wchar_t *str2); const wchar_t * __cdecl StrStrI(const wchar_t *str1, const wchar_t *str2); const wchar_t * __cdecl RevStrStr(const wchar_t *str1, const wchar_t *str2); const wchar_t * __cdecl RevStrStrI(const wchar_t *str1, const wchar_t *str2); int NumStrCmp(const wchar_t *s1, size_t n1, const wchar_t *s2, size_t n2, bool IgnoreCase); inline int NumStrCmpN(const wchar_t *s1, int n1, const wchar_t *s2, int n2) { return NumStrCmp(s1, n1, s2, n2, false); } inline int NumStrCmpNI(const wchar_t *s1, int n1, const wchar_t *s2, int n2) { return NumStrCmp(s1, n1, s2, n2, true); } inline int NumStrCmp(const wchar_t *s1, const wchar_t *s2) { return NumStrCmp(s1, -1, s2, -1, false); } inline int NumStrCmpI(const wchar_t *s1, const wchar_t *s2) { return NumStrCmp(s1, -1, s2, -1, true); }