代码搜索:Hints

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

代码结果 1,068
www.eeworm.com/read/172888/9683273

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,
www.eeworm.com/read/172888/9683403

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 addr
www.eeworm.com/read/172888/9683415

c tcp_listen.c

/* include tcp_listen */ #include "unp.h" int tcp_listen(const char *host, const char *serv, socklen_t *addrlenp) { int listenfd, n; const int on = 1; struct addrinfo hints, *res, *res
www.eeworm.com/read/135580/13919806

cxx fl_x.cxx

// // "$Id: Fl_x.cxx,v 1.1.1.1 2003/08/07 21:18:40 jasonk Exp $" // // X specific code for the Fast Light Tool Kit (FLTK). // // Copyright 1998-1999 by Bill Spitzak and others. // // This library is f
www.eeworm.com/read/255833/12053906

rsg settingslist.rsg

#define R_SETTINGSLIST_MENU_BAR 0x5d7f8004 #define R_SETTINGSLIST_MENU_PANE 0x5d7f8005 #define R_SETTINGSLIST_SETTING_ITEM_LIST 0x5d7f8006 #define R_SETT
www.eeworm.com/read/390191/8479037

c clinet.c

/* -*- c-file-style: "java"; indent-tabs-mode: nil; fill-column: 78; -*- * * distcc -- A simple distributed compiler system * * Copyright (C) 2002, 2003, 2004 by Martin Pool * * This program is
www.eeworm.com/read/377683/9266788

ac configure.ac

# # The build process allows for using a cross-compiler. But the default # action is to target the same platform that we are running on. The # configure script needs to discover the following proper
www.eeworm.com/read/278507/10532407

c getaddrinfo.c

/* include ga1 */ #include "gai_hdr.h" #include /* needed for */ #include /* res_init, _res */ int getaddrinfo(const char *hostname, const char *servname,
www.eeworm.com/read/468602/6985802

c resize.c

#ifndef lint static char *rcsid_Resize_c = "$Header: Resize.c 88/08/09 08:58:47 Xusr Exp $"; #endif /* * Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts. * *
www.eeworm.com/read/133772/5902789

c getaddrinfo.c

//========================================================================== // // lib/getaddrinfo.c // // getaddrinfo(), freeaddrinfo(), gai_strerror(), getnameinfo() // //===========