Subversion Repositories pentevo

Rev

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

  1. /* texutil.c */
  2. /*****************************************************************************/
  3. /* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only                     */
  4. /*                                                                           */
  5. /* AS                                                                        */
  6. /*                                                                           */
  7. /* TeX-->ASCII/HTML Converter: Common Utils/Variables                        */
  8. /*                                                                           */
  9. /*****************************************************************************/
  10.  
  11. #include <stdio.h>
  12.  
  13. #include "texutil.h"
  14.  
  15. /*--------------------------------------------------------------------------*/
  16.  
  17. Boolean DoRepass;
  18. char *pInFileName;
  19. int CurrLine, CurrColumn;
  20.  
  21. /*--------------------------------------------------------------------------*/
  22.  
  23. /*!------------------------------------------------------------------------
  24.  * \fn     Warning(const char *pMsg)
  25.  * \brief  print warning
  26.  * \param  pMsg warning message
  27.  * ------------------------------------------------------------------------ */
  28.  
  29. void Warning(const char *pMsg)
  30. {
  31.   fprintf(stderr, "%s:%d.%d: %s\n", pInFileName, CurrLine, CurrColumn, pMsg);
  32. }
  33.