代码搜索:readline

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

代码结果 2,619
www.eeworm.com/read/323581/3514734

3 editline.3

.\" $Revision: 1.1.1.1 $ .TH EDITLINE 3 .SH NAME editline \- command-line editing library with history .SH SYNOPSIS .nf .B "char *" .B "readline(prompt)" .B " char *prompt;" .B "void" .B "add_his
www.eeworm.com/read/290808/3970955

c strclifork.c

#include "unp.h" void str_cli(FILE *fp, int sockfd) { pid_t pid; char sendline[MAXLINE], recvline[MAXLINE]; if ( (pid = Fork()) == 0) { /* child: server -> stdout */ while (Readline(sockfd, re
www.eeworm.com/read/290808/3971297

c strecho02.c

#include "unp.h" void str_echo(int sockfd) { ssize_t n; char line[MAXLINE]; heartbeat_serv(sockfd, 1, 5); for ( ; ; ) { if ( (n = Readline(sockfd, line, MAXLINE)) == 0) return; /* conne
www.eeworm.com/read/372681/2770149

3 editline.3

.TH EDITLINE 3 .SH NAME editline \- command-line editing library with history .SH SYNOPSIS .nf .B "char *" .B "readline(prompt)" .B " char *prompt;" .B "void" .B "add_history(line)" .B
www.eeworm.com/read/102720/15761008

3 editline.3

.\" $Revision: 1.2 $ .TH EDITLINE 3 .SH NAME editline \- command-line editing library with history .SH SYNOPSIS .nf .B "char *" .B "readline(prompt)" .B " char *prompt;" .B "void" .B "add_history
www.eeworm.com/read/100263/15879586

standalone

This is a description of C preprocessor defines that readline accepts. Most are passed in from the parent `make'; e.g. from the bash source directory. NO_SYS_FILE is not present HAVE_UN
www.eeworm.com/read/192102/8404606

htm ch08_198.htm

Term::ReadLine (Perl in a Nutshell, 2nd Edition)
www.eeworm.com/read/284171/8957751

py chknet.py

import os, sys, string, re f = open(sys.argv[1]) packet = [] times = [] while 1 : l = f.readline() if l == '' : break s = string.split(l) if s[2] == 'sending' : ax, ay = int
www.eeworm.com/read/143979/12825472

py gpython.py

#!/usr/bin/env python import __builtin__ import __main__ import codeop import keyword import os import re import readline import threading import traceback import signal import sys if sys.version[0] =
www.eeworm.com/read/144216/5751954

pm nox.pm

package CPAN::Nox; use strict; use vars qw($VERSION @EXPORT); BEGIN{ $CPAN::Suppress_readline=1 unless defined $CPAN::term; } use base 'Exporter'; use CPAN; $VERSION = "1.00"; $CPAN::META->has_in