build fix

This commit is contained in:
fall-leaf 2023-08-04 14:25:26 +03:00
parent 15e119014b
commit e3e69c073b

View File

@ -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);