source: MondoRescue/branches/3.2/mondo/src/include/mr_types.h@ 3510

Last change on this file since 3510 was 2208, checked in by Bruno Cornec, 15 years ago

Addition of useful functions originaly written for stable branch now obsolete

  • Property svn:eol-style set to native
File size: 356 bytes
Line 
1/*
2 * $Id$
3 *
4 * Header file of mr_types: MondoRescue Types
5 * Provided under the GPL v2
6 */
7
8#ifndef MR_TYPES_H
9#define MR_TYPES_H
10
11/**
12 * Create the illusion of a Boolean type.
13 */
14#if !defined(bool) && !defined(__cplusplus)
15typedef enum {
16 FALSE = 0,
17 TRUE
18} bool;
19#endif
20
21extern bool mr_atob(const char *str);
22
23#endif /* MR_TYPES_H */
Note: See TracBrowser for help on using the repository browser.