mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-14 17:45:04 +00:00
21 lines
317 B
C
21 lines
317 B
C
|
/* copyright (c) 2022 grunfink - MIT license */
|
||
|
|
||
|
#define XS_IMPLEMENTATION
|
||
|
|
||
|
#include "xs.h"
|
||
|
#include "xs_io.h"
|
||
|
#include "xs_encdec.h"
|
||
|
#include "xs_json.h"
|
||
|
#include "xs_curl.h"
|
||
|
#include "xs_openssl.h"
|
||
|
#include "xs_socket.h"
|
||
|
#include "xs_httpd.h"
|
||
|
|
||
|
#include "snac.h"
|
||
|
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
return 0;
|
||
|
}
|