diff options
Diffstat (limited to 'msg.c')
-rw-r--r-- | msg.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -32,6 +32,10 @@ #define MSG_C__ +#include <stdbool.h> + +bool errors = false; + #include <assert.h> #include <string.h> #include "msg.h" @@ -40,7 +44,7 @@ struct str2int_avec_t { const char * str; int integer; }; - + int within_interval (int n, int a, int b) { |