代码搜索:Terminated

找到约 1,727 项符合「Terminated」的源代码

代码结果 1,727
www.eeworm.com/read/208758/15237763

c str_cli11.c

#include "unp.h" void str_cli(FILE *fp, int sockfd) { char sendline[MAXLINE], recvline[MAXLINE]; while (Fgets(sendline, MAXLINE, fp) != NULL) { Writen(sockfd, sendline, 1); sleep(1); Writen
www.eeworm.com/read/208758/15237770

c str_cli08.c

#include "unp.h" void str_cli(FILE *fp, int sockfd) { char sendline[MAXLINE], recvline[MAXLINE]; while (Fgets(sendline, MAXLINE, fp) != NULL) { Writen(sockfd, sendline, strlen(sendline)); if
www.eeworm.com/read/208758/15237775

c sigchldwait.c

#include "unp.h" void sig_chld(int signo) { pid_t pid; int stat; pid = wait(&stat); printf("child %d terminated\n", pid); return; }
www.eeworm.com/read/162614/5525014

ada c94001b.ada

-- C94001B.ADA -- 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-0025,
www.eeworm.com/read/162614/5525052

ada c94002a.ada

-- C94002A.ADA -- 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-0025,
www.eeworm.com/read/162614/5531045

c if-4.c

/* Regression test for proper error message. The token name isn't NUL terminated, so we would print garbage after it. */ /* { dg-do compile } */ #if 1 += 2 /* { dg-error "is not valid" "+= in
www.eeworm.com/read/474431/6809300

c mstrnlen.c

/* ** Safe string length. Returns the length of a string that ** is possibly not NUL-terminated. 'size' is the length of the ** buffer in which this string is stored. */ #include
www.eeworm.com/read/172888/9683407

c str_cli.c

#include "unp.h" void str_cli(FILE *fp, int sockfd) { char sendline[MAXLINE], recvline[MAXLINE]; while (Fgets(sendline, MAXLINE, fp) != NULL) { Writen(sockfd, sendline, strlen(sendline
www.eeworm.com/read/268219/11149311

m rsc_encode.m

function y = rsc_encode(g, x, terminated) % Copyright Nov. 1998 Yufei Wu % MPRG lab, Virginia Tech. % for academic use only % encodes a block of data x (0/1)with a recursive systematic % convol
www.eeworm.com/read/202486/15381528

cpp ex0802.cpp

// Programming with C++, Second Edition, by John R. Hubbard // Copyright McGraw-Hill, 2000 // Example 8.2 on page 185 // C-Strings are terminated with the NUL character #include