#ifndef SYSTEM_H_ #define SYSTEM_H_ /* Bibliotheken einbinden */ #include #include #include #include #include "control.h" /* Konstanten fuer Meldung ueber Programmbeendigung */ enum _exit_state { EXIT_SUCCESS, EXIT_FAILURE }; /* Typdefinition Status der Programmbeendigung */ typedef enum _exit_state exit_state; /* Konstanten von boolschen Werten */ enum _bool { false, true }; /* Typdefinition des Boolschen Datentyp */ typedef enum _bool bool; #endif /* SYSTEM_H_ */