Subversion Repositories pentevo

Rev

Blame | Last modification | View Log | Download | RSS feed | ?url?

  1. #ifndef _TEXUTIL_H
  2. #define _TEXUTIL_H
  3. /* texutil.h */
  4. /*****************************************************************************/
  5. /* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only                     */
  6. /*                                                                           */
  7. /* AS                                                                        */
  8. /*                                                                           */
  9. /* TeX-->ASCII/HTML Converter: Common Utils/Variables                        */
  10. /*                                                                           */
  11. /*****************************************************************************/
  12.  
  13. #include "datatypes.h"
  14.  
  15. /*---------------------------------------------------------------------------*/
  16.  
  17. extern Boolean DoRepass;
  18. extern char *pInFileName;
  19. extern int CurrLine, CurrColumn;
  20.  
  21. /*---------------------------------------------------------------------------*/
  22.  
  23. extern void Warning(const char *pMsg);
  24.  
  25. #endif /* _TEXUTIL_H */
  26.