From 1c6ded5f0aabbce69eb1b7f547c9de10609d81ad Mon Sep 17 00:00:00 2001 From: anon Date: Thu, 3 Aug 2023 12:43:43 +0200 Subject: [PATCH] fix types regarding api prototypes --- include/parse.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/parse.h b/include/parse.h index adafb8a..2245b26 100644 --- a/include/parse.h +++ b/include/parse.h @@ -15,5 +15,10 @@ DECL void parse_command(char * cmd); DECL int parse_creds(char const * creds_file); DECL void clean_creds(void); +DECL char * remind(char * who); +DECL void set_repo(const char * const who, const char * const link); +DECL char * dump(void); +DECL char * raw(const char * const sql); + #define CREDS_PARSER_H #endif