#include <h/utils.h>
#include <stdio.h>
#include <ctype.h>
-#include <stdbool.h>
enum threestate {
*/
static enum threestate is_falted(FILE *);
static size_t copyname(char *, char *);
-static bool is_separator(char *);
+static boolean is_separator(char *);
/*
return strlen(dst);
}
-static bool
+static boolean
is_separator(char *line)
{
/*
line++;
}
if (strcmp("\n", line) == 0 || strcmp("\r\n", line) == 0 ) {
- return true;
+ return TRUE;
}
- return false;
+ return FALSE;
}