/[sudobot]/branches/6.x/lib/common/bridge.c
ViewVC logotype

Contents of /branches/6.x/lib/common/bridge.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 577 - (show annotations)
Mon Jul 29 18:52:37 2024 UTC (8 months ago) by rakinar2
File MIME type: text/x-c
File size: 370 byte(s)
chore: add old version archive branches (2.x to 9.x-dev)
1 #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