home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / utility / misc / rawinfo.lha / print.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-09  |  192 b   |  8 lines

  1. void Print(char *string,BOOL newline);
  2. extern BPTR _Backstdout;
  3.  
  4. void Print(char *string,BOOL newline) {
  5.     Write(_Backstdout,string,strlen (string));
  6.     if (newline) Write(_Backstdout,"\n",1);
  7. }
  8.