From 1a2d0ffdbfb69a2858fb45facfb18468106edd9a Mon Sep 17 00:00:00 2001 From: dx Date: Wed, 20 May 2020 16:24:57 +0100 Subject: +function to get the lines of some given file Uses the dynamic array to alleviate the burdens of computing specific memory sizes. Terminates lines for parsing. --- Converter/includes/compiler.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Converter/includes/compiler.h') diff --git a/Converter/includes/compiler.h b/Converter/includes/compiler.h index 6e1eca8..8d84b71 100644 --- a/Converter/includes/compiler.h +++ b/Converter/includes/compiler.h @@ -15,4 +15,7 @@ int find_string(string src, string query, size_t sz_src, size_t sz_query); /* Check if a given character is a text token*/ bool is_token(char c); +/* Given a file, get the lines */ +char **get_lines(char *filename); + #endif // __COMPILER_H_ -- cgit v1.2.3-13-gbd6f