From a29bca4b79f19e9f04420b545bdec27ddc99150c Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 14 Oct 2024 09:36:14 -0400 Subject: Fix includes --- include/strlist.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'include/strlist.h') diff --git a/include/strlist.h b/include/strlist.h index dd22a0a..cdbfc01 100644 --- a/include/strlist.h +++ b/include/strlist.h @@ -4,10 +4,15 @@ */ #ifndef STASIS_STRLIST_H #define STASIS_STRLIST_H + +typedef int (ReaderFn)(size_t line, char **); + #include +#include "core.h" #include "utils.h" #include "str.h" + struct StrList { size_t num_alloc; size_t num_inuse; -- cgit