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 typedef struct
{ {
char * username; size_t admin_count;
char * password; char * username;
char * channel; char * password;
char * server; char * channel;
int port; char * server;
char ** admins;
int port;
} creds_t; } creds_t;
extern creds_t creds; VARDECL creds_t creds;
DECL char ** str_split(char const * s, char c); 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 * dump(void);
DECL char * raw(char const * const sql); DECL char * raw(char const * const sql);
DECL char * remind(char * who); DECL char * remind(char * who);