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

10
include/core/epoll.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef CWS_EPOLL_H
#define CWS_EPOLL_H
int cws_epoll_add(int epfd, int sockfd);
int cws_epoll_del(int epfd, int sockfd);
int cws_epoll_create_with_fd(int fd);
#endif