home *** CD-ROM | disk | FTP | other *** search
- /*--------------------------------------*/
- /* */
- /* CRLF(X) */
- /* */
- /* Displays a carraige return and a */
- /* line feed on the screen. The argument*/
- /* is the repetition factor. */
- /* */
- /*--------------------------------------*/
- void crlf(a)
- int a;
- {
- int j;
- for (j=0;j<a;j++)
- cprintf("\n");
- }