structures.h 409 B

123456789101112131415161718192021222324252627282930313233343536
  1. #ifndef STRUCTURES_H
  2. #define STRUCTURES_H
  3. struct ana {
  4. int touf;
  5. } nas;
  6. struct _geronimo {
  7. double b;
  8. };
  9. struct {
  10. char * titi;
  11. float y;
  12. } pomme;
  13. //typedef struct _geronimo indien;
  14. typedef struct {
  15. char z;
  16. } tomate;
  17. struct _poire {
  18. int g;
  19. tomate rouge;
  20. };
  21. typedef struct _poire kudamono;
  22. struct {
  23. int zozo;
  24. kudamono fruit;
  25. } poney;
  26. typedef struct poney equide;
  27. #endif //STRUCTURES_H