types.h 299 B

12345678910111213141516171819202122232425
  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. {
  17. BOOL_FALSE,
  18. BOOL_TRUE
  19. } bool_t;
  20. /** @} */
  21. #endif /* _lub_types_h */