File: stack.h

package info (click to toggle)
latex2rtf 1.9.19-4.2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 5,976 kB
  • sloc: ansic: 18,882; makefile: 607; sh: 371; perl: 22
file content (9 lines) | stat: -rw-r--r-- 261 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
extern int      BraceLevel;

void            InitializeStack(void);
void            PushLevels(void);
int             PopLevels(void);
void            CleanStack(void);
void            PushBrace(void);
int             PopBrace(void);
void			myprintStack(void);