home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / viscobv7.zip / vac22os2 / ibmcobol / macros / c.smp < prev    next >
Text File  |  1998-02-24  |  269b  |  16 lines

  1. /* Comment */
  2.  
  3. #include <myheader.hpp>
  4. #include <istring.hpp>
  5. #define aMacro(x,y)   \
  6.          {x = y;}
  7. int myMain (char* a, int x) {
  8.   SHORT j = x;
  9.   char b[20];
  10.   if (j)
  11.     strcpy(b, "hello);
  12.   else
  13.     strcpy(b, "goodbye");
  14.   return strequ(a, b);
  15. }
  16.