Загрузить файлы в «C»

This commit is contained in:
8nlight 2023-08-23 19:45:00 +03:00
parent 99346d6e24
commit bfd92a19b7
1 changed files with 3 additions and 3 deletions

View File

@ -8,8 +8,9 @@
motd parsing
*/
#ifdef IRC_LINUX
#define IRC_LINUX
#if defined(_WIN32) || defined(_WIN64)
#error "Only unix"
#endif
#include <stdio.h>
#include <string.h>
@ -52,4 +53,3 @@ unsigned int IRCC_recv(IRCC_client *irc);
void IRCC_send(IRCC_client *irc, char *msg, char *channel);
unsigned int IRCC_init(IRCC_client *irc, size_t size);
void IRCC_close(IRCC_client *irc);
#endif