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

13 lines
188 B
C
Raw Normal View History

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