From e3e69c073bae8a5e4eef0080b8b4e5dac0ac910c Mon Sep 17 00:00:00 2001 From: fall-leaf Date: Fri, 4 Aug 2023 14:25:26 +0300 Subject: [PATCH] build fix --- include/parse.h | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/include/parse.h b/include/parse.h index 17a8994..0e1213b 100644 --- a/include/parse.h +++ b/include/parse.h @@ -2,17 +2,19 @@ typedef struct { - char * username; - char * password; - char * channel; - char * server; - int port; + size_t admin_count; + char * username; + char * password; + char * channel; + char * server; + char ** admins; + int port; } creds_t; -extern creds_t creds; +VARDECL creds_t creds; DECL char ** str_split(char const * s, char c); -DECL void split_clean(char ** split) +DECL void split_clean(char ** split); DECL char * dump(void); DECL char * raw(char const * const sql); DECL char * remind(char * who);