home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Otherware
/
Otherware_1_SB_Development.iso
/
amiga
/
utility
/
misc
/
rawinfo.lha
/
print.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-08-09
|
192 b
|
8 lines
void Print(char *string,BOOL newline);
extern BPTR _Backstdout;
void Print(char *string,BOOL newline) {
Write(_Backstdout,string,strlen (string));
if (newline) Write(_Backstdout,"\n",1);
}