home *** CD-ROM | disk | FTP | other *** search
/ ftp.parl.clemson.edu / 2015-02-07.ftp.parl.clemson.edu.tar / ftp.parl.clemson.edu / pub / coven / coven-utils-1.1.tgz / coven-utils-1.1.tar / utils / coven-language / Coven_lang.h < prev    next >
C/C++ Source or Header  |  2003-01-28  |  362b  |  23 lines

  1. /*
  2.  * (C) 2001 Clemson University
  3.  *
  4.  * See COPYING in top-level directory.
  5.  */
  6.  
  7.  
  8. #ifndef _Coven_lang_h_
  9. #define _Coven_lang_h_
  10.  
  11. #include <stdio.h>
  12.  
  13. extern int line;
  14. extern int list_flag;
  15. extern FILE *list_file;
  16. extern FILE *out_file;
  17.  
  18. void produce_listing(int line, char *listing);
  19. void *emalloc(unsigned int size);
  20. char *enter_string(char *oldstrong);
  21.  
  22. #endif
  23.