代码搜索:readline

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

代码结果 2,619
www.eeworm.com/read/403922/11502624

html readline.setup.html

Installing/Configuring
www.eeworm.com/read/403922/11504574

html readline.constants.html

Predefined Constants
www.eeworm.com/read/403922/11505370

html intro.readline.html

Introduction
www.eeworm.com/read/403922/11506333

html readline.configuration.html

Runtime Configuration
www.eeworm.com/read/129891/14219575

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/129891/14219610

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/129891/14219707

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/129891/14219718

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/129891/14219724

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/221047/14759655

html module-readline.html

7.17 readline -- GNU readline interface