refactor: simplify file name

This commit is contained in:
2025-10-26 18:03:21 +01:00
parent 4fced17513
commit 1863c58b4f
17 changed files with 75 additions and 78 deletions

11
include/core/socket.h Normal file
View File

@@ -0,0 +1,11 @@
#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