hedgewars/pas2c.h
author unc0rr
Sun, 15 Apr 2012 00:47:22 +0400
changeset 6891 ab9843957664
parent 6889 149638c9cbc4
child 6894 555a8d8db228
permissions -rw-r--r--
Improve rendering of function types, ranges, and more

#pragma once

#include <stdbool.h>

typedef struct string255_
    {
        char s[256];
    } string255;
typedef struct string192_
    {
        char s[193];
    } string192;
typedef struct string31_
    {
        char s[32];
    } string31;
typedef struct string15_
    {
        char s[16];
    } string15;

typedef int SmallInt;
typedef int Word;
typedef int LongInt;
typedef int LongWord;
typedef int Byte;
typedef int Integer;
typedef long long int QWord;

typedef float extended;
typedef float real;

typedef bool boolean;

typedef void * pointer;
typedef Byte * PByte;
typedef char * PChar;
typedef LongInt * PLongInt;
typedef Integer * PInteger;