home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource4
/
223_01
/
pad.c
< prev
next >
Wrap
Text File
|
1979-12-31
|
384b
|
9 lines
#define NOCCARGC /* no argument count passing */
/*
** Place n occurrences of ch at dest.
*/
pad(dest, ch, n) char *dest, *n; int ch; {
/* n is a fake unsigned integer */
while(n--) *dest++ = ch;
}