home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Liren Large Software Subsidy 11
/
11.iso
/
m
/
m242
/
1.ddi
/
SOURCE.ZIP
/
DOSSTR.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1989-10-16
|
241 b
|
11 lines
void dosstr(prtstr) /* print a string to the standard printer device */
char *prtstr; /* string to print */
{
while(*prtstr){
if (*prtstr != '\n'){
doschar(*prtstr);
}
prtstr++;
}
}