testit.h 504 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. Test header file to test conversion program.
  3. */
  4. typedef struct {
  5. int x;
  6. int y;
  7. } a;
  8. typedef union fpk {
  9. int X;
  10. int y;
  11. int z;
  12. } b;
  13. typedef _test test;
  14. struct _test
  15. {
  16. int x;
  17. int y;
  18. };
  19. void proc(int *,int);
  20. void proc(int *p,int i);
  21. typedef enum { First, second, third } C;
  22. typedef enum { DFirst = 1, DSecond = 2, DThird = 3 } D;
  23. typedef enum { EFirst = 100, ESecond, EThird } D;
  24. void someproc(char *Firstarg,...);
  25. mytype* somefunc (char *firstarg);
  26. #define test 0x012345UL