Subversion Repositories pentevo

Rev

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

  1. #ifndef _TEXREFS_H
  2. #define _TEXREFS_H
  3. /* texrefs.c */
  4. /*****************************************************************************/
  5. /* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only                     */
  6. /*                                                                           */
  7. /* AS                                                                        */
  8. /*                                                                           */
  9. /* TeX Convertes: Label/Citation Bookkeeping                                 */
  10. /*                                                                           */
  11. /*****************************************************************************/
  12.  
  13. extern void InitLabels(void);
  14. extern void AddLabel(const char *pName, const char *pValue);
  15. extern void GetLabel(const char *pName, char *pDest);
  16. extern void PrintLabels(const char *pFileName);
  17. extern void FreeLabels(void);
  18.  
  19. extern void InitCites(void);
  20. extern void AddCite(const char *pName, const char *pValue);
  21. extern void GetCite(char *pName, char *pDest);
  22. extern void PrintCites(const char *pFileName);
  23. extern void FreeCites(void);
  24.  
  25. #endif /* _TEXREFS_H */
  26.