代码搜索:readline
找到约 2,619 项符合「readline」的源代码
代码结果 2,619
www.eeworm.com/read/272397/4216872
cs binarywriterdemo.cs
using System;
using System.IO;
class BinaryWriterDemo
{
public static void Main(String[] args)
{
Console.WriteLine("请输入文件名:");
string Filename = Console.ReadLine();
FileStream files
www.eeworm.com/read/398634/2374453
am makefile.am
## Process this file with automake to create Makefile.in
# Makefile for the GNU readline library.
# Copyright (C) 1994,1996,1997 Free Software Foundation, Inc.
# Last -I$(top_srcdir) needed for RedH
www.eeworm.com/read/398634/2374511
am makefile.am
## Process this file with automake to create Makefile.in
# Makefile for the GNU readline library.
# Copyright (C) 1994,1996,1997 Free Software Foundation, Inc.
ASRC = $(srcdir)/vi.c $(srcdir)/emacs
www.eeworm.com/read/384848/2596900
c rl.c
/*
* rl - command-line interface to read a line from the standard input
* (or another fd) using readline.
*
* usage: rl [-p prompt] [-u unit] [-d default] [-n nchars]
*/
#if defined (HAVE_C
www.eeworm.com/read/366141/2893178
py install.py
import os
import sys
#determine if using double or single precision
file = open("../../../../headers/paramesh_preprocessor.fh","r")
real8 = 0
while 1:
line = file.readline()
if line == '':
break
www.eeworm.com/read/179967/9326094
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/278507/10530199
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/442749/7645722
py cat.py
#!/usr/bin/env python
# Filename: cat.py
import sys
def readfile(filename):
'''Print a file to the standard output.'''
f=file(filename)
while True:
line=f.readline()
if len(line)==0
www.eeworm.com/read/435264/7794858
py cat.py
#!/usr/bin/env python
# Filename: cat.py
import sys
def readfile(filename):
'''Print a file to the standard output.'''
f=file(filename)
while True:
line=f.readline()
if len(line)==0
www.eeworm.com/read/127694/6002448
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