aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/strlist.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/strlist.h b/include/strlist.h
index 76b6d5f..9614894 100644
--- a/include/strlist.h
+++ b/include/strlist.h
@@ -4,6 +4,7 @@
*/
#ifndef SPM_STRLIST_H
#define SPM_STRLIST_H
+#include "metadata.h"
typedef struct {
size_t num_alloc;
@@ -12,6 +13,7 @@ typedef struct {
} StrList;
StrList *strlist_init();
+int strlist_append_file(StrList *pStrList, char *path, ReaderFn *readerFn);
void strlist_remove(StrList *pStrList, size_t index);
long double strlist_item_as_long_double(StrList *pStrList, size_t index);
double strlist_item_as_double(StrList *pStrList, size_t index);