init here

This commit is contained in:
2025-11-26 21:32:41 +03:00
commit 33c97acade
91 changed files with 9155 additions and 0 deletions

13
си/suckit.h Normal file
View File

@@ -0,0 +1,13 @@
#ifndef SUCKIT_H
#define SUCKIT_H
#include "rt_api.h"
int create_socket_fd(int port);
int accept_socket(int fd);
void write_string(int socket, TString data);
void close_socket(int socket);
TString read_to_string(int socket, int bytes);
int connect_socket(TString host, int port);
#endif // SUCKIT_H