代码搜索:readline

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

代码结果 2,619
www.eeworm.com/read/180046/7072490

h readline.h

#include #include struct lineinfo{ int lineno; char linestr[80]; }; int countline(char *); int readline(char *);
www.eeworm.com/read/180046/7072491

c readline_.c

#include #include #include #include "readline_.h" int readline(int fd,char *buf,int nbytes) { int numread = 0; int returnval; while(numread < nbytes -1){
www.eeworm.com/read/180046/7072493

c readline.c

#include "readline.h" int countline(char *filename) { FILE *fp; int count = 1; int ch = -1; fp = fopen(filename,"r"); if(fp == NULL){ perror("Open file"); exit(1); }else{
www.eeworm.com/read/451140/7470722

c readline.c

#include #include #include #include #include "util.h" #include "ReadLine.h" /* Pass in a pointer to a token list. Is freed and then set to null */ void Fre
www.eeworm.com/read/451140/7470728

h readline.h

char **ReadLineTokens(INOUT FILE * InFile, INOUT int *LineNum); int CountTokens(IN char **Tokens); void FreeTokens(INOUT char ***TokensPtr);
www.eeworm.com/read/449863/7495404

java readline.java

public class Readline { public static void main(String args[]){ byte buf[]=new byte[1024]; String strInfo=null; int pos=0; int ch=0; System.out.println("enter info"); while(true){
www.eeworm.com/read/331141/12846687

html readline.html

www.eeworm.com/read/143410/12878408

dll readline.dll

www.eeworm.com/read/139738/13137147

o readline.o

www.eeworm.com/read/139738/13137306

c readline.c

#include "stdio.h" #include "stdlib.h" void readline(char *s, int maxlength) { int i = 0; while (1) { char c = getch(); /* if end of line, finish up */ if (c == '\n') { putchar