代码搜索:readline
找到约 2,619 项符合「readline」的源代码
代码结果 2,619
www.eeworm.com/read/129891/14219716
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/128880/14273708
c readline.c
/* include readline */
#include "unpipc.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/126953/14392605
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/227822/14411062
c readline.c
/*
* QEMU readline utility
*
* Copyright (c) 2003-2004 Fabrice Bellard
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated docume
www.eeworm.com/read/123857/14608615
c readline.c
#include "../etcp.h"
/* readline - read a newline terminated record */
int readline( SOCKET fd, char *bufptr, size_t len )
{
char *bufx = bufptr;
static char *bp;
static int cnt = 0;
static char
www.eeworm.com/read/123106/14648407
h readline.h
/*
readline.h
by bill kendrick
kendrick@zippy.sonoma.edu
http://zippy.sonoma.edu/kendrick/
reads a line using fgets
*/
#include
void readline(FILE * fi, char * buf);
www.eeworm.com/read/123106/14648426
c readline.c
/*
readline.c
Hacked for Free Chat to allow for BINARY-FTP'd files (strips &M)
by bill kendrick
kendrick@zippy.sonoma.edu
http://zippy.sonoma.edu/kendrick/
reads a line using fgets
www.eeworm.com/read/120825/14786617
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