summaryrefslogtreecommitdiff
path: root/src/main.c
blob: a95e8d17ff083a4011e207753744bfb983b509c0 (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.h"
#include "encryption.h"
#include "threadpool.h"

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

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

    return 0;
}