/* * $Id$ * * Header file of mr_types: MondoRescue Types * Provided under the GPL v2 */ #ifndef MR_TYPES_H #define MR_TYPES_H /** * Create the illusion of a Boolean type. */ #if !defined(bool) && !defined(__cplusplus) typedef enum { FALSE = 0, TRUE } bool; #endif extern bool mr_atob(const char *str); #endif /* MR_TYPES_H */