mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-29 12:43:45 +02:00
39 lines
504 B
C
39 lines
504 B
C
/*
|
|
Test header file to test conversion program.
|
|
*/
|
|
|
|
typedef struct {
|
|
int x;
|
|
int y;
|
|
} a;
|
|
|
|
typedef union fpk {
|
|
int X;
|
|
int y;
|
|
int z;
|
|
} b;
|
|
|
|
typedef _test test;
|
|
|
|
struct _test
|
|
{
|
|
int x;
|
|
int y;
|
|
};
|
|
|
|
void proc(int *,int);
|
|
void proc(int *p,int i);
|
|
|
|
typedef enum { First, second, third } C;
|
|
|
|
typedef enum { DFirst = 1, DSecond = 2, DThird = 3 } D;
|
|
|
|
typedef enum { EFirst = 100, ESecond, EThird } D;
|
|
|
|
void someproc(char *Firstarg,...);
|
|
|
|
mytype* somefunc (char *firstarg);
|
|
|
|
#define test 0x012345UL
|
|
|