fpc/packages/libxml/examples/exutils.pas
ivost 6c7c28c5f2 * fixed name of libxml2, it's called now xml2. This way it follows the rules of the other libs in packages
* tried to fix the samples (still some problems)

git-svn-id: trunk@12587 -
2009-01-24 01:40:17 +00:00

52 lines
856 B
ObjectPascal

unit exutils;
interface
{$mode objfpc}
uses
ctypes,
xml2,
SysUtils;
procedure docdump(doc: xmlDocPtr);
procedure printf(const msg: string; const args: array of const);
procedure printf(const msg: string);
procedure printfn(const msg: string; const args: array of const);
procedure printfn(const msg: string);
implementation
procedure docdump(doc: xmlDocPtr);
var
mem: xmlCharPtr;
size: cint;
begin
mem := nil;
xmlDocDumpMemory(doc, mem, size);
writeln(pchar(mem));
xmlFree(mem);
end;
procedure printf(const msg: string; const args: array of const);
begin
write(Format(msg, args));
end;
procedure printf(const msg: string);
begin
write(msg);
end;
procedure printfn(const msg: string; const args: array of const);
begin
writeln(Format(msg, args));
end;
procedure printfn(const msg: string);
begin
writeln(msg);
end;
end.