home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / prgramer / adaptor / src / include / analysi.h next >
C/C++ Source or Header  |  1994-01-02  |  409b  |  24 lines

  1. # ifndef yyAdaptAnalysis
  2. # define yyAdaptAnalysis
  3.  
  4. # if defined __STDC__ | defined __cplusplus
  5. # define ARGS(parameters)    parameters
  6. # else
  7. # define ARGS(parameters)    ()
  8. # endif
  9.  
  10. # ifndef bool
  11. # define bool char
  12. # endif
  13.  
  14. # include "Tree.h"
  15. # include "Definiti.h"
  16.  
  17.  
  18. extern void AdaptAnalysis ARGS((tTree t));
  19.  
  20. extern void BeginAdaptAnalysis ();
  21. extern void CloseAdaptAnalysis ();
  22.  
  23. # endif
  24.