types.h 302 B

123456789101112131415161718192021222324
  1. /*
  2. * types.h
  3. */
  4. /**
  5. \ingroup lub
  6. \defgroup lub_types types
  7. \brief This provides some primative types not found in ANSI-C.
  8. @{
  9. */
  10. #ifndef _lub_types_h
  11. #define _lub_types_h
  12. /**
  13. * A boolean type for ANSI-C
  14. */
  15. typedef enum {
  16. BOOL_FALSE,
  17. BOOL_TRUE
  18. } bool_t;
  19. /** @} */
  20. #endif /* _lub_types_h */