| 126 | } fd_set_t; |
| 127 | |
| 128 | static inline void FD_CLR(int fd, fd_set_t* fds) { |
| 129 | assert(fd < FD_SETSIZE); |
| 130 | fds->fds_bits[fd / 8] &= ~(1 << (fd % 8)); |
| 131 | } |
| 132 | static inline int FD_ISSET(int fd, fd_set_t* fds) { |
| 133 | assert(fd < FD_SETSIZE); |
| 134 | return fds->fds_bits[fd / 8] & (1 << (fd % 8)); |
nothing calls this directly
no outgoing calls
no test coverage detected