代码搜索:readline
找到约 2,619 项符合「readline」的源代码
代码结果 2,619
www.eeworm.com/read/250117/4441818
cs binaryreaderdemo.cs
using System;
using System.IO;
class BinaryReaderDemo
{
public static void Main(String[] args)
{
Console.WriteLine("请输入文件名:");
string file = Console.ReadLine();
if (!File.Exist
www.eeworm.com/read/246537/4493584
c test04.c
/* test readline() */
#include "unpthread.h"
static char *infile; /* from argv[1]; read-only by threads */
void *
myfunc(void *ptr)
{
int i, fdin;
char buf[MAXLINE];
FILE *fpout;
snprintf(buf
www.eeworm.com/read/242732/4541358
c readln.c
/* rdline.c
*
* Copyright (c) 1992-2001 by Mike Gleason.
* All rights reserved.
*
* Note: It should still be simple to backport the old GNU Readline
* support in here. Feel free to do tha
www.eeworm.com/read/235810/4645738
cs binaryreaderdemo.cs
using System;
using System.IO;
class BinaryReaderDemo
{
public static void Main(String[] args)
{
Console.WriteLine("请输入文件名:");
string file = Console.ReadLine();
if (!File.Exist
www.eeworm.com/read/216450/4895263
3 editline.3
.\" $Revision: 1.1 $
.TH EDITLINE 3
.SH NAME
editline \- command-line editing library with history
.SH SYNOPSIS
.ft B
char *readline(char *\fIprompt\fP)
.ft P
.SH DESCRIPTION
.I Editline
is a library
www.eeworm.com/read/209211/4982187
h fns.h
/* buf.c */
void initibuf(Ibuf*, Ioproc*, int);
int readibuf(Ibuf*, char*, int);
void unreadline(Ibuf*, char*);
int readline(Ibuf*, char*, int);
/* client.c */
int newclient(int);
void closecli
www.eeworm.com/read/313224/3645084
pm cap.pm
package Term::Cap;
# Since the debugger uses Term::ReadLine which uses Term::Cap, we want
# to load as few modules as possible. This includes Carp.pm.
sub carp {
require Carp;
goto &Carp::ca
www.eeworm.com/read/290808/3970824
c test04.c
/* test readline() */
#include "unpthread.h"
static char *infile; /* from argv[1]; read-only by threads */
void *
myfunc(void *ptr)
{
int i, fdin;
char buf[MAXLINE];
FILE *fpout;
snprintf(buf
www.eeworm.com/read/272397/4216861
cs binaryreaderdemo.cs
using System;
using System.IO;
class BinaryReaderDemo
{
public static void Main(String[] args)
{
Console.WriteLine("请输入文件名:");
string file = Console.ReadLine();
if (!File.Exist
www.eeworm.com/read/438718/1822892
py test_tokenize.py
from test_support import verbose, findfile
import tokenize, os, sys
if verbose:
print 'starting...'
file = open(findfile('tokenize_tests.py'))
tokenize.tokenize(file.readline)
if verbose:
pri