home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Windows 95 Secrets (4th Edition)
/
Windows95Secrets4thEdition.iso
/
tools
/
installr
/
freeman
/
strlines.h_
/
strlines
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-06-14
|
316 b
|
24 lines
#define __STRLINES_H
class strlines
{
char *q;
char *p;
public:
strlines()
{
q = 0;
p = 0;
}
int hasmore();
int getnolines(char s[]);
void start(char s[]);
void proceed();
void peek(char b[]);
void getline(char s[], int i, char line[]);
};