代码搜索:readline

找到约 2,619 项符合「readline」的源代码

代码结果 2,619
www.eeworm.com/read/126074/6018796

exp iofnx.exp

TRUE CLIPS> (batch "iofnx.bat") TRUE CLIPS> (clear) CLIPS> (open) ; 10.5.2.1 [ARGACCES4] Function open expected at least 2 argument(s) CLIPS> (o
www.eeworm.com/read/124399/6049794

clp compline.clp

(deffunction compare-files (?base-file ?test-file ?output) (open ?base-file base) (open ?test-file test) (bind ?i 0) (bind ?difference FALSE) (bind ?base-line (readline base)) (bind
www.eeworm.com/read/124399/6050047

exp iofnx.exp

TRUE CLIPS> (batch "iofnx.bat") TRUE CLIPS> (clear) CLIPS> (open) ; 10.5.2.1 [ARGACCES4] Function open expected at least 2 argument(s) CLIPS> (o
www.eeworm.com/read/120487/6073852

c input.c

/* * psql - the PostgreSQL interactive terminal * * Copyright (c) 2000-2003, PostgreSQL Global Development Group * * $Header: /cvsroot/pgsql/src/bin/psql/input.c,v 1.31 2003/09/12 02:40:09 momjia
www.eeworm.com/read/115385/6116964

h gftp-text.h

/*****************************************************************************/ /* gftp-text.h - include file for the gftp text port */ /* Copyright (C) 1998-2003 Brian Masney
www.eeworm.com/read/109233/6175932

help-message

# # irb/lc/help-message.rb - # $Release Version: 0.7.3$ # $Revision: 1.1.2.2 $ # $Date: 2001/06/01 15:26:47 $ # by Keiju ISHITSUKA(keiju@ishitsuka.com) # # -- # # # Usage: irb.rb [o
www.eeworm.com/read/408584/11380391

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)); if
www.eeworm.com/read/408584/11381600

c treadline2.c

#include "unp.h" int main(int argc, char **argv) { int count = 0; ssize_t n; char recvline[MAXLINE]; while ( ( n = readline(STDIN_FILENO, recvline, MAXLINE)) > 0) count++; printf("%d lines\n
www.eeworm.com/read/408584/11381605

c treadline1.c

#include "unp.h" int main(int argc, char **argv) { int count = 0; ssize_t n; char recvline[MAXLINE]; while ( ( n = readline(STDIN_FILENO, recvline, MAXLINE)) > 0) count++; printf("%d lines\n
www.eeworm.com/read/408584/11381704

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