home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-386-Vol-2of3.iso / c / csh4.zip / CRLF.C < prev    next >
Text File  |  1985-09-04  |  59b  |  6 lines

  1. crlf()
  2. {
  3.     static char *cr = "\r\n";
  4.     write(1,cr,2);
  5. }
  6.