Use boolean instand of bool
[mmh] / sbr / m_getfld2.c
index 18ad812..45172aa 100644 (file)
@@ -10,7 +10,6 @@
 #include <h/utils.h>
 #include <stdio.h>
 #include <ctype.h>
-#include <stdbool.h>
 
 
 enum threestate {
@@ -24,7 +23,7 @@ enum threestate {
 */
 static enum threestate is_falted(FILE *);
 static size_t copyname(char *, char *);
-static bool is_separator(char *);
+static boolean is_separator(char *);
 
 
 /*
@@ -214,7 +213,7 @@ copyname(char *dst, char *src)
        return strlen(dst);
 }
 
-static bool
+static boolean
 is_separator(char *line)
 {
        /*
@@ -225,7 +224,7 @@ is_separator(char *line)
                line++;
        }
        if (strcmp("\n", line) == 0 || strcmp("\r\n", line) == 0 ) {
-               return true;
+               return TRUE;
        }
-       return false;
+       return FALSE;
 }