代码搜索:Hints

找到约 1,068 项符合「Hints」的源代码

代码结果 1,068
www.eeworm.com/read/290808/3970760

c udp_connect.c

/* include udp_connect */ #include "unp.h" int udp_connect(const char *host, const char *serv) { int sockfd, n; struct addrinfo hints, *res, *ressave; bzero(&hints, sizeof(struct addrinfo));
www.eeworm.com/read/290808/3970789

c tcp_connect.c

/* include tcp_connect */ #include "unp.h" int tcp_connect(const char *host, const char *serv) { int sockfd, n; struct addrinfo hints, *res, *ressave; bzero(&hints, sizeof(struct addrinfo));
www.eeworm.com/read/358128/3001196

pm sort.pm

package sort; our $VERSION = '2.01'; # The hints for pp_sort are now stored in $^H{sort}; older versions # of perl used the global variable $sort::hints. -- rjh 2005-12-19 $sort::quicksort_bit =
www.eeworm.com/read/169697/5413126

in makefile.in

CC = @CC@ AR = @AR@ LIBNAME = @LIBNAME@ srcdir = @srcdir@ INCLUDE_DIR = -I@MPI_INCLUDE_DIR@ -I${srcdir}/../include -I../include -I../../include -I${srcdir}/../../../../inc
www.eeworm.com/read/246537/4493550

c host_serv.c

/* include host_serv */ #include "unp.h" struct addrinfo * host_serv(const char *host, const char *serv, int family, int socktype) { int n; struct addrinfo hints, *res; bzero(&hints, sizeof(st
www.eeworm.com/read/290808/3970775

c host_serv.c

/* include host_serv */ #include "unp.h" struct addrinfo * host_serv(const char *host, const char *serv, int family, int socktype) { int n; struct addrinfo hints, *res; bzero(&hints, sizeof(st
www.eeworm.com/read/246537/4493511

c udp_server.c

/* include udp_server */ #include "unp.h" int udp_server(const char *host, const char *serv, socklen_t *addrlenp) { int sockfd, n; struct addrinfo hints, *res, *ressave; bzero(&hints, sizeof(s
www.eeworm.com/read/246537/4493541

c udp_client.c

/* include udp_client */ #include "unp.h" int udp_client(const char *host, const char *serv, void **saptr, socklen_t *lenp) { int sockfd, n; struct addrinfo hints, *res, *ressave; bzero(&hints
www.eeworm.com/read/290808/3970720

c udp_server.c

/* include udp_server */ #include "unp.h" int udp_server(const char *host, const char *serv, socklen_t *addrlenp) { int sockfd, n; struct addrinfo hints, *res, *ressave; bzero(&hints, sizeof(s
www.eeworm.com/read/290808/3970764

c udp_client.c

/* include udp_client */ #include "unp.h" int udp_client(const char *host, const char *serv, SA **saptr, socklen_t *lenp) { int sockfd, n; struct addrinfo hints, *res, *ressave; bzero(&hints,