enums.h 243 B

12345678
  1. #ifndef ENUMS_H
  2. #define ENUMS_H
  3. enum strategy { RANDOM, IMMEDIATE, SEARCH };
  4. enum strategy my_strategy = IMMEDIATE;
  5. typedef enum pipete { CANON, FUSIL = 3, ARC, CANNEAPECHE } aplume;
  6. typedef enum { POLO, MARCO, NADINE } baka;
  7. #endif //ENUMS_H