Files
helmetc/server_test.c
2025-10-18 16:31:44 +02:00

28 lines
396 B
C

/*
*
* Copyright 2023 Oleg Borodin <borodin@unix7.org>
*
*/
#include <stdio.h>
//#include <fcntl.h>
//#include <clconfig.h>
#include <massert.h>
#include <server.h>
int main(int argc, char** argv) {
(void)argc;
(void)argv;
server_init();
int res = 0;
if ((res = server_config()) < 0) {
return res;
}
return 0;
}