X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=Test.obn;h=f47edbbb416fd2154a0f16c7bfbaf310923269bc;hb=ab13caca4af9fb7617a6dfeaaec3b250c5bda0ac;hp=fa347cddf19074ac48f9ac84d99c4993074f5aef;hpb=1233fb1d5d8f67a8f5e970386c1c4cbb6691ec04;p=dsw-obn.git diff --git a/Test.obn b/Test.obn index fa347cd..f47edbb 100644 --- a/Test.obn +++ b/Test.obn @@ -1,21 +1,23 @@ MODULE Test; -IMPORT Files, Out; +IMPORT Files; + +TYPE + String = POINTER TO ARRAY OF CHAR; + R* = RECORD ch : CHAR END; VAR f : Files.File; r : Files.Rider; - len : LONGINT; - x : POINTER TO ARRAY OF CHAR; + m : R; + s : String; BEGIN f := Files.Old("Test.obn"); ASSERT(f # NIL); Files.Set(r, f, 0); - len := Files.Length(f); - NEW(x, len + 1); + Files.Read(r, m.ch); - Files.ReadBytes(r, x, len); - Out.String(x^); Out.Ln; + ASSERT(s = NIL); END Test.