#include <git-compat-util.h>
+#include <stdbool.h>
+
#include <cache.h>
#include <grep.h>
#include <object.h>
#include <notes.h>
#include <graph.h>
+/* Add isgraph(x) to Git's sane ctype support (see git-compat-util.h) */
+#undef isgraph
+#define isgraph(x) (isprint((x)) && !isspace((x)))
/*
* Dateformats used on misc. pages
extern char *expand_macros(const char *txt);
+extern char *get_mimetype_for_filename(const char *filename);
+
#endif /* CGIT_H */