home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_01 / 1001023a < prev    next >
Text File  |  1991-11-17  |  183b  |  18 lines

  1. Example of Header File With C & C++ Prototypes
  2.  
  3. example1.h:
  4.  
  5. #ifdef __cplusplus
  6. extern "C" {
  7. #endif
  8.  
  9. int foo(int x);
  10. int bar(int x);
  11.  
  12. #ifdef __cplusplus
  13. }
  14. #endif
  15.  
  16.  
  17.  
  18.