build fix
This commit is contained in:
parent
15e119014b
commit
e3e69c073b
@ -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);
|
||||
|
Reference in New Issue
Block a user