代码搜索:Prot

找到约 2,417 项符合「Prot」的源代码

代码结果 2,417
www.eeworm.com/read/167562/5456441

cpp nis.cpp

#include #include #include int main(int, char **) { char *d; yp_get_default_domain(&d); return 0; }
www.eeworm.com/read/162614/5521138

c visibility2.c

// { dg-do assemble } // GROUPS passed visibility #include class base { //========== void base_priv(char * n) { std::cout
www.eeworm.com/read/162614/5525315

a c761007.a

-- C761007.A -- -- -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-002
www.eeworm.com/read/161993/5549235

c pbuf.c

/** * @file * Packet buffer management * * Packets are represented by the pbuf data structure. It supports dynamic * memory allocation for packet contents or can reference externally * man
www.eeworm.com/read/161121/5560336

h pgalloc.h

/* * linux/include/asm-arm/proc-armv/pgalloc.h * * Copyright (C) 2001 Russell King * * Page table allocation/freeing primitives for 32-bit ARM processors. */ /* unfortunately, this includes l
www.eeworm.com/read/473608/6847034

c prg13_4_1.c

#include #include #include #include #include #define FILE_MODE (S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH) int main(int argc,char **arg
www.eeworm.com/read/113863/15446479

c test3.c

#include "unpipc.h" int main(int argc, char **argv) { int fd1, fd2, *ptr1, *ptr2; pid_t childpid; struct stat stat; if (argc != 2) err_quit("usage: test3 "); shm_unlink(Px_ipc_name(ar
www.eeworm.com/read/113863/15446487

c shmwrite.c

#include "unpipc.h" int main(int argc, char **argv) { int i, fd; struct stat stat; unsigned char *ptr; if (argc != 2) err_quit("usage: shmwrite "); /* 4open, get size, map */ fd = S
www.eeworm.com/read/110223/15538590

cpp irc.cpp

// ======================================================== // Internet Relay Chat protocol implementation // // Based on RFC1459 (http://www.faqs.org/rfcs/rfc1459.html) // // Design and implemen
www.eeworm.com/read/110223/15538591

cpp smtp.cpp

// ======================================================== // ePlug SMTP protocol implementation // // Design and implementation by: // - Floris van den Berg // =================================