11 lines
118 B
C
11 lines
118 B
C
|
#ifndef _BREAD_H
|
||
|
#define _BREAD_H
|
||
|
|
||
|
|
||
|
int iread(FILE *);
|
||
|
long lread(FILE *);
|
||
|
char *aread(char *, int, FILE *);
|
||
|
|
||
|
#endif
|
||
|
|