home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / me34exe.zip / mutt / misc / ascii.mut next >
Text File  |  1995-01-14  |  223b  |  16 lines

  1. (include me.mh)
  2. (include mod.mut)
  3.  
  4. (defun
  5.   all-the-ASCII-characters
  6.   {
  7.     (int j)
  8.  
  9.     (for (j 1) (< j 256) (+= j 1)
  10.     {
  11.       (insert-text (convert-to CHARACTER j))
  12.       (if (== 0 (mod j 32)) (newline))
  13.     })
  14.   }
  15. )
  16.