代码搜索:readline

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

代码结果 2,619
www.eeworm.com/read/480287/6671869

dll readline.dll

www.eeworm.com/read/409113/11347758

asp readline.asp

www.eeworm.com/read/408584/11380274

lc readline.lc

/* include readline */ #include "unp.h"## 1 ##src/lib/readline.c## static int read_cnt;## 2 ##src/lib/readline.c## static char *read_ptr;## 3 ##src/lib/readline.c## static char read_buf[MAXLINE
www.eeworm.com/read/408584/11380404

c readline.c

/* include readline */ #include "unp.h" static int read_cnt; static char *read_ptr; static char read_buf[MAXLINE]; static ssize_t my_read(int fd, char *ptr) { if (read_cnt
www.eeworm.com/read/408584/11380430

lc readline.lc

/* include readline1 */ #include "unpthread.h"## 1 ##src/threads/readline.c## static pthread_key_t rl_key;## 2 ##src/threads/readline.c## static pthread_once_t rl_once = PTHREAD_ONCE_INIT;## 3
www.eeworm.com/read/408584/11380475

c readline.c

/* include readline1 */ #include "unpthread.h" static pthread_key_t rl_key; static pthread_once_t rl_once = PTHREAD_ONCE_INIT; static void readline_destructor(void *ptr) { free(ptr); } static void
www.eeworm.com/read/408584/11381486

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/408584/11381602

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/408502/11384950

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/158402/11620909

o readline.o