Parent Directory
|
Revision Log
chore: add trunk
1 | rakinar2 | 575 | #include <stdio.h> |
2 | #include <stdbool.h> | ||
3 | #include <stdlib.h> | ||
4 | #include <assert.h> | ||
5 | #include <concord/discord.h> | ||
6 | #include "io/log.h" | ||
7 | |||
8 | #include "sudobot.h" | ||
9 | |||
10 | bool libsudobot_native_start(const char *token) | ||
11 | { | ||
12 | if (token == NULL) | ||
13 | { | ||
14 | log_error("%s(...): Token must not be null!", __func__); | ||
15 | return false; | ||
16 | } | ||
17 | |||
18 | return sudobot_start_with_token(token); | ||
19 | } |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |