home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 1 / FishNMoreVol1.bin / more / code_examples / librar / crlf.c < prev    next >
Text File  |  1989-02-08  |  401b  |  17 lines

  1. /*--------------------------------------*/
  2. /*                    */
  3. /*               CRLF(X)                */
  4. /*                       */
  5. /* Displays a carraige return and a     */
  6. /* line feed on the screen. The argument*/
  7. /* is the repetition factor.            */
  8. /*                    */
  9. /*--------------------------------------*/
  10. void crlf(a)
  11. int a;
  12. {
  13.         int j;
  14.         for (j=0;j<a;j++)
  15.              cprintf("\n");
  16. }
  17.