refactor: change project structure

This commit is contained in:
2025-10-26 17:51:41 +01:00
parent 33a12aaf73
commit 0293b0f5c0
25 changed files with 585 additions and 555 deletions

View File

@@ -0,0 +1,10 @@
#ifndef CWS_SOCKET_H
#define CWS_SOCKET_H
#include <myclib/mystring.h>
#include <sys/types.h>
ssize_t cws_read_data(int sockfd, string_s *str);
ssize_t cws_send_data(int sockfd, char *buffer, int len, int flags);
#endif