aboutsummaryrefslogtreecommitdiff
path: root/environ.h
diff options
context:
space:
mode:
Diffstat (limited to 'environ.h')
-rw-r--r--environ.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/environ.h b/environ.h
index 2aaaebf..421d983 100644
--- a/environ.h
+++ b/environ.h
@@ -7,7 +7,8 @@ typedef struct environ {
char *tg_api;
char *tg_chat_raw;
int64_t tg_chat;
- uint32_t tg_admin;
+ unsigned int tg_admins_size;
+ uint32_t *tg_admins;
char *tg_link_fmt;
char *rcon_host;
char *rcon_port;
@@ -16,5 +17,6 @@ typedef struct environ {
} Environ;
int environ_read(Environ *out);
+void environ_free(Environ *env);
#endif // _ENVIRON_H