qotd/server/server.h
2021-07-08 13:42:32 +02:00

20 lines
277 B
C

//
// Created by k0rb4k on 30/03/2021.
//
#ifndef QOTD_SERVER_H
#define QOTD_SERVER_H
#include <sys/socket.h>
#include <netinet/in.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <stdio.h>
void tcpServer();
void udpServer();
#endif //QOTD_SERVER_H