hedgewars/pas2cSystem.pas
author sheepluva
Sat, 10 Dec 2011 04:10:32 +0100
changeset 6522 babc3af72035
parent 6520 6fecdc5d182f
child 6552 91adc9ee7b8c
permissions -rw-r--r--
removing my reserved hat. also using this commit to test whether CIA.vc notification directly by google-code works (so that you don't have to rely on my server doing this anymore) see http://cia.vc/blog/2009/03/google-revisited/

system;

type 
    LongInt = integer;
    LongWord = integer;
    Cardinal = integer;
    PtrInt = integer;
    Word = integer;
    Integer = integer;
    Byte = integer;
    SmallInt = integer;
    ShortInt = integer;

    pointer = pointer;
    PChar = pointer;

    double = float;
    real = float;
    float = float;

    boolean = boolean;
    LongBool = boolean;

    string = string;
    shortstring = string;
    ansistring = string;

    char = char;
    
    PByte = ^Byte;
    PLongInt = ^LongInt;
    PLongWord = ^LongWord;
    PInteger = ^Integer;
var 
    false, true: boolean;
    write, writeLn, read, readLn, inc, dec: procedure;
    StrLen, ord, Succ, Pred : function : integer;
    Low, High : function : integer;
    Now : function : integer;
    SysUtils.StrPas, FormatDateTime : function : shortstring;
    exit : procedure;