代码搜索:readline
找到约 2,619 项符合「readline」的源代码
代码结果 2,619
www.eeworm.com/read/127694/6002830
c readline.c
/* include readline */
#include "unp.h"
ssize_t
readline(int fd, void *vptr, size_t maxlen)
{
ssize_t n, rc;
char c, *ptr;
ptr = vptr;
for (n = 1; n < maxlen; n++) {
if ( (rc = read(fd, &c, 1)
www.eeworm.com/read/127694/6002877
h readline.h
typedef struct {
int read_fd; /* caller's descriptor to read from */
char *read_ptr; /* caller's buffer to read into */
size_t read_maxlen; /* max #bytes to read */
/* next three are use
www.eeworm.com/read/126411/6017587
ps readline.ps
%!PS-Adobe-2.0
%%Creator: dvipsk 5.490s Copyright 1986, 1992 Radical Eye Software
%%Title: history.dvi
%%Pages: 22 1
%%BoundingBox: 0 0 612 792
%%EndComments
%DVIPSCommandLine: dvips -D 300 -o history
www.eeworm.com/read/126411/6017590
h readline.h
/* Readline.h -- the names of functions callable from within readline. */
/* Copyright (C) 1987, 1989, 1992 Free Software Foundation, Inc.
This file is part of the GNU Readline Library, a library
www.eeworm.com/read/126411/6017602
c readline.c
/* readline.c -- a general facility for reading lines of input
with emacs style editing and completion. */
/* Copyright (C) 1987, 1989, 1992 Free Software Foundation, Inc.
This file is part of
www.eeworm.com/read/117181/6110741
exp readline.exp
# Copyright 2002 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Fre
www.eeworm.com/read/106490/6192489
java readline.java
//==============================================================
// ReadLine.java - Prompt user to enter a string
//
// Java学习源代码检索系统 Ver 1.0 20031015 免费正式版
// 版权所有: 中国IT认证实验室(www.ChinaITLab.com)
www.eeworm.com/read/101082/6242537
c readline.c
/* readline.c 4.1 83/03/09 */
/*
* Read a line from the keyboard in the message line. The line
* goes into caller provided buffer msg, whos size is maxlen bytes.
*/
#include "2648.h"
readline(pr
www.eeworm.com/read/100086/6274220
tcl readline.tcl
# readline.tcl -- well known key bindings for Tk's entry widget.
#
# Copyright (C) 1995 Ralph Schleicher
#
# This library is free software; you can redistribute it and/or
# modify it under the terms o
www.eeworm.com/read/481078/6658348