mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-19 03:09:15 +02:00
* cwstring is unix only
git-svn-id: trunk@19143 -
This commit is contained in:
parent
85ed1b87d9
commit
030bcd083b
@ -6,7 +6,11 @@ program tstrutils1;
|
|||||||
{$h+}
|
{$h+}
|
||||||
|
|
||||||
uses
|
uses
|
||||||
{SysUtils, }cwstring,StrUtils;
|
{SysUtils, }
|
||||||
|
{$ifdef unix}
|
||||||
|
cwstring,
|
||||||
|
{$endif unix}
|
||||||
|
StrUtils;
|
||||||
|
|
||||||
var
|
var
|
||||||
ResultCounter: Integer = 0;
|
ResultCounter: Integer = 0;
|
||||||
|
@ -1,13 +1,17 @@
|
|||||||
program tstrutils2;
|
program tstrutils2;
|
||||||
|
|
||||||
// tests MBCS compatibility of strutils ansistartstext and -endstext.
|
// tests MBCS compatibility of strutils ansistartstext and -endstext.
|
||||||
// (case-insensitive)
|
// (case-insensitive)
|
||||||
|
|
||||||
{$mode objfpc}
|
{$mode objfpc}
|
||||||
{$h+}
|
{$h+}
|
||||||
|
|
||||||
uses
|
uses
|
||||||
StrUtils,cwstring;
|
StrUtils,
|
||||||
|
{$ifdef unix}
|
||||||
|
cwstring
|
||||||
|
{$endif unix}
|
||||||
|
;
|
||||||
|
|
||||||
var
|
var
|
||||||
ResultCounter: Integer = 0;
|
ResultCounter: Integer = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user