commit 63f1dea533df57b76416da34497c48e84552c0ed from: Omar Polo date: Mon Jul 12 17:27:48 2021 UTC add missing include parser.h commit - 386c1f8c0f0b3d1a7a18e3aca6eb1596aa502788 commit + 63f1dea533df57b76416da34497c48e84552c0ed blob - dd41f6e9abcb5c556e9c67aa3f9139967df4ace8 blob + 46ef180b412797d8b711d722ee03998dcf4903b2 --- textplain.c +++ textplain.c @@ -18,11 +18,12 @@ * A streaming text/plain "parser." */ -#include "telescope.h" - #include #include +#include "telescope.h" +#include "parser.h" + static int textplain_parse(struct parser*, const char*, size_t); static int textplain_foreach_line(struct parser*, const char*, size_t); static int textplain_free(struct parser*);