refactor(socket): better naming convention

This commit is contained in:
2026-01-14 01:43:02 +01:00
parent 676268798b
commit f9d6975cce
2 changed files with 7 additions and 7 deletions

View File

@@ -4,8 +4,8 @@
#include <myclib/mystring.h>
#include <sys/types.h>
ssize_t cws_read_data(int sockfd, string_s *str);
size_t cws_socket_read(int sockfd, string_s *str);
ssize_t cws_send_data(int sockfd, char *buffer, int len, int flags);
size_t cws_socket_send(int sockfd, char *buffer, size_t len, int flags);
#endif