Files
llgo/c/sys/_wrap/fddef.c

14 lines
205 B
C
Raw Normal View History

2024-07-16 11:49:38 +08:00
#include <sys/types.h>
2024-07-19 11:18:13 +08:00
int llgo_FD_ISSET(int n, fd_set *fd) {
2024-07-16 11:49:38 +08:00
return FD_ISSET(n, fd);
}
2024-07-19 11:18:13 +08:00
void llgo_FD_SET(int n, fd_set *fd) {
2024-07-16 11:49:38 +08:00
FD_SET(n, fd);
}
2024-07-19 11:18:13 +08:00
void llgo_FD_ZERO(fd_set *fd) {
2024-07-16 11:49:38 +08:00
FD_ZERO(fd);
2024-07-19 11:18:13 +08:00
}