changeset 6894 | 555a8d8db228 |
parent 6891 | ab9843957664 |
child 6895 | 31def088a870 |
--- a/hedgewars/pas2c.h Thu Apr 19 23:36:20 2012 +0400 +++ b/hedgewars/pas2c.h Fri Apr 20 01:50:47 2012 +0400 @@ -38,3 +38,11 @@ typedef LongInt * PLongInt; typedef Integer * PInteger; +#define new(a) __new(a, sizeof(*(a))) +void __new(pointer p); + +#define FillChar(a, b, c) __FillChar(&(a), b, c) + +void __FillChar(pointer p, int size, char fill); +string255 _strconcat(string255 a, string255 b); +