代码搜索:readline
找到约 2,619 项符合「readline」的源代码
代码结果 2,619
www.eeworm.com/read/119983/14814592
java simulatetextbrowser.java
package net;
import java.net.*;
import java.io.*;
/**
* 在这里插入类型说明。
* 建立日期:(00-8-1 11:15:15)
* @程序设计者:
*/
public class SimulateTextBrowser {
/**
* ResembleTextBrowser 构造子注释。
*/
publ
www.eeworm.com/read/118409/14873344
java ch3errorcorrect1.java
import java.io.*;
public class Ch3ErrorCorrect1
{
public static void main(String args[])
{
try
{
BufferedReader br = new BufferedReader(
n
www.eeworm.com/read/211657/15175950
cs class1.cs
using System;
namespace switch_demo
{
///
/// Class1 的摘要说明。
///
class Class1
{
///
/// 应用程序的主入口点。
///
[STAThread]
static void Mai
www.eeworm.com/read/208758/15237763
c str_cli11.c
#include "unp.h"
void
str_cli(FILE *fp, int sockfd)
{
char sendline[MAXLINE], recvline[MAXLINE];
while (Fgets(sendline, MAXLINE, fp) != NULL) {
Writen(sockfd, sendline, 1);
sleep(1);
Writen
www.eeworm.com/read/208758/15237770
c str_cli08.c
#include "unp.h"
void
str_cli(FILE *fp, int sockfd)
{
char sendline[MAXLINE], recvline[MAXLINE];
while (Fgets(sendline, MAXLINE, fp) != NULL) {
Writen(sockfd, sendline, strlen(sendline));
if
www.eeworm.com/read/158872/5590063
in makefile.in
## -*- text -*- ##
# Makefile for the GNU readline library shared library support.
#
# Copyright (C) 1998 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/o
www.eeworm.com/read/473608/6847023
c prg4_8client.c
#include
#include
#include
#include
#include
#include
#include "fifo.h"
#include
#include
www.eeworm.com/read/174006/9612443
txt 3.8.txt
Listing 3.8 Manipulating an Internal String Buffer Instead of Returning New
String Objects
using System;
using System.Text;
namespace _7_StringBuilder
{
class Class1
{
[STAThread]
static void
www.eeworm.com/read/172888/9683396
c str_echo.c
#include "unp.h"
void
str_echo(int sockfd)
{
ssize_t n;
char line[MAXLINE];
for ( ; ; ) {
if ( (n = Readline(sockfd, line, MAXLINE)) == 0)
return; /* connection closed by other
www.eeworm.com/read/172888/9683407
c str_cli.c
#include "unp.h"
void
str_cli(FILE *fp, int sockfd)
{
char sendline[MAXLINE], recvline[MAXLINE];
while (Fgets(sendline, MAXLINE, fp) != NULL) {
Writen(sockfd, sendline, strlen(sendline