home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 357_01 / cstar1.exe / DARG.PP < prev    next >
Text File  |  1991-11-15  |  272b  |  15 lines

  1. /*
  2.     1/12/86 -d identifier defines an identifier on the command line.
  3.     Test this program with cpp darg.tst out -d a=whatever.
  4. */
  5. #ifdef a
  6. "a" is defined to be a
  7. #else
  8. "a" is NOT defined.
  9. #endif
  10. #ifdef A
  11. "A" is defined to be A
  12. #else
  13. "A" is NOT defined.
  14. #endif
  15.