home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / c / c2man-2.0pl33.lha / c2man-2.0 / eg / ellipsis.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-14  |  238 b   |  16 lines

  1. int             pr(int,...);
  2.  
  3. void            main(void)
  4. {
  5.     pr(3, 'a', 'b', 'c');
  6. }
  7.  
  8. /* ellipsis test function */
  9. int             pr(
  10.     int nitems,        /* number of items */
  11.     ...            /* items */
  12. )
  13. {
  14.     /* blah, blah, blah, blah, blah! */
  15. }
  16.