home *** CD-ROM | disk | FTP | other *** search
/ ftptest.leeds.ac.uk / 2015.02.ftptest.leeds.ac.uk.tar / ftptest.leeds.ac.uk / bionet / CAE-GROUP / SCL-WIN3x / FED_PLUS.EXE / FEDEX_MA.C < prev    next >
Text File  |  1994-07-24  |  1KB  |  49 lines

  1. static char rcsid[] = "$Id: fedex_main.c,v 1.6 1992/09/29 15:46:55 libes Exp $";
  2.  
  3. /************************************************************************
  4. ** Driver for Fed-X Express parser.
  5. ************************************************************************/
  6.  
  7. /*
  8.  * This software was developed by U.S. Government employees as part of
  9.  * their official duties and is not subject to copyright.
  10.  *
  11.  * $Log: fedex_main.c,v $
  12.  * Revision 1.6  1992/09/29  15:46:55  libes
  13.  * added messages for KC
  14.  *
  15.  * Revision 1.5  1992/08/27  23:28:52  libes
  16.  * moved Descriptor "new"s to precede assignments
  17.  * punted SELECT type
  18.  *
  19.  * Revision 1.4  1992/08/19  18:49:59  libes
  20.  * registry support
  21.  *
  22.  * Revision 1.3  1992/06/05  19:55:28  libes
  23.  * Added * to typedefs.  Replaced warning kludges with ERRORoption.
  24.  */
  25.  
  26. #include <stdio.h>
  27. #include "express.h"
  28. #include "resolve.h"
  29.  
  30. void print_file(Express);
  31.  
  32. void resolution_success(void)
  33. {
  34.     printf("Resolution successful.  Writing C++ output...\n");
  35. }
  36.  
  37. int success(Express model)
  38. {
  39.     printf("Finished writing files.\n");
  40.     return(0);
  41. }
  42.  
  43. void
  44. EXPRESSinit_init() {
  45.     EXPRESSbackend = print_file;
  46.     EXPRESSsucceed = success;
  47. }
  48.  
  49.