11 lines
171 B
C
11 lines
171 B
C
#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
|