Browse Source

build fix

pull/3/head
fall-leaf 10 months ago
parent
commit
e3e69c073b
1 changed files with 9 additions and 7 deletions
  1. +9
    -7
      include/parse.h

+ 9
- 7
include/parse.h 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);