Subversion Repositories pentevo

Rev

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

  1. #ifndef _TEXTOC_H
  2. #define _TEXTOC_H
  3. /* textoc.h */
  4. /*****************************************************************************/
  5. /* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only                     */
  6. /*                                                                           */
  7. /* AS                                                                        */
  8. /*                                                                           */
  9. /* TeX-->ASCII/HTML Converter: Table Of Contents                             */
  10. /*                                                                           */
  11. /*****************************************************************************/
  12.  
  13. extern void InitToc(void);
  14.  
  15. extern void AddToc(const char *pLine, unsigned Indent);
  16.  
  17. extern void PrintToc(char *pFileName);
  18.  
  19. extern void FreeToc(void);
  20.  
  21. #endif /* _TEXTOC_H */
  22.