home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / xco212p.zip / SAMPLES / CSET / c_test.c next >
C/C++ Source or Header  |  1996-03-05  |  271b  |  14 lines

  1. /*
  2.   Example of multi-language programming: C function is called from M2
  3. */
  4.  
  5. #include <stdio.h>
  6.  
  7. int c_func(int a, int b)
  8. {
  9.         printf("\nThis is a C function called by M2 procedure\n");
  10.         printf("c_func (%d, %d)\n", a, b);
  11.         return a+b; 
  12. }
  13.  
  14.