home *** CD-ROM | disk | FTP | other *** search
- /* iblank.c */
- /********************************************
- * clear with spaces between boundaries
- * Istvan Mohos, 1987 --- in the Public Domain
- ********************************************/
-
- #include "i.h"
-
- void
- iblank (start, end)
- register char *start, *end;
- {
- register char *off;
-
- /* end is one byte past the rightmost byte cleared */
- for(off = start; off < end; *off++ = ' ');
- }
-