代码搜索:readline
找到约 2,619 项符合「readline」的源代码
代码结果 2,619
www.eeworm.com/read/458101/7312557
asp demo_readline.asp
This is the first line of the text file:
Hello!
www.eeworm.com/read/243140/12958915
h cli_readline.h
/*****************************************************************************
*
* Module : cli_readline.h
* Descriptions : provides all readline functions
* OS : SLOS
* Pl
www.eeworm.com/read/243140/12958956
c cli_readline.c
/*****************************************************************************
*
* Module : readline.c
* Description : provides all readline functions
* OS : SLOS 0.09
* P
www.eeworm.com/read/127694/6002799
h readline_r.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/127694/6002822
c readline_r.c
/* include readline */
#include "unp.h"
#include "readline_r.h"
static ssize_t
my_read_r(Rline *rptr, char *ptr)
{
if (rptr->rl_cnt rl_cnt = read(rptr->read_fd, rptr->rl_buf,
www.eeworm.com/read/127694/6002872
c readline3.c
/* include readline */
#include "unp.h"
#include "readline.h"
static ssize_t
my_read(Rline *rptr, char *ptr)
{
if (rptr->rl_cnt rl_cnt = read(rptr->read_fd, rptr->rl_buf, size
www.eeworm.com/read/127694/6002878
c readline1.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++) {
again:
if ( (rc = read(fd,
www.eeworm.com/read/127694/6002883
c readline2.c
/* include readline */
#include "unp.h"
static ssize_t
my_read(int fd, char *ptr)
{
static int read_cnt = 0;
static char *read_ptr;
static char read_buf[MAXLINE];
if (read_cnt
www.eeworm.com/read/408584/11381401
h readline_r.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