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-module-parser / module_lang.h < prev    next >
C/C++ Source or Header  |  2003-01-28  |  388b  |  24 lines

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