Repository URL to install this package:
|
Version:
3.2.0 ▾
|
unit uprintf3;
{$mode macpas}
interface
{ This calling convention is almost equivalent to cdecl,
so that cdecl modifer should not be needed below }
{$calling mwpascal}
{$ifdef WINDOWS}
const
{$ifdef wince}
CrtLib = 'coredll.dll';
{$else}
CrtLib = 'msvcrt.dll';
{$endif}
procedure printf(const formatstr : pchar; ...); external CrtLib name 'printf';
procedure sprintf(p : pchar;const formatstr : pchar; ...); external CrtLib name 'sprintf';
const
int64prefix='I64';
{$else}
{$linklib c}
procedure printf(const formatstr : pchar; ...); external;
procedure sprintf(p : pchar;const formatstr : pchar; ...); external;
const
int64prefix='ll';
{$endif}
end.