123456789101112131415161718192021222324 |
- /*
- * types.h
- */
- /**
- \ingroup lub
- \defgroup lub_types types
- \brief This provides some primative types not found in ANSI-C.
- @{
- */
- #ifndef _lub_types_h
- #define _lub_types_h
- /**
- * A boolean type for ANSI-C
- */
- typedef enum {
- BOOL_FALSE,
- BOOL_TRUE
- } bool_t;
- /** @} */
- #endif /* _lub_types_h */
|