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 / grouped.c < prev    next >
Encoding:
Text File  |  1995-01-14  |  331 b   |  24 lines

  1. /*
  2.  * grouped functions
  3.  *
  4.  */
  5.  
  6. /* my grouped1 does something weird */
  7. grouped1(a,b)
  8. int a;    /* the a parameter */
  9. char b; /* the b parameter */
  10. {
  11.  
  12.     /* do nothing */
  13.     return(1);
  14. }
  15. /* my grouped2 does also something weird */
  16. grouped2(a,b)
  17. int a;    /* the a parameter */
  18. char *b;/* the b parameter */
  19. {
  20.  
  21.     /* do nothing */
  22.     return(1);
  23. }
  24.