summaryrefslogtreecommitdiff
path: root/src/main.c
blob: b5b4a5fcd817f5ec5156fdd405a757487ea9e19d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
 * @file main.c
 * @author syxhe (https://t.me/syxhe)
 * @brief Putting everything together
 * @version 0.1
 * @date 2025-06-09
 *
 * @copyright Copyright (c) 2025
 *
 */

#include "shared.c"
#include "encryption.c"
#include "threadpool.c"

#include <errno.h>
#include <error.h>

int main() {
    error(-1, ENOTSUP, "lol");

    return 0;
}