File: styles.h

package info (click to toggle)
latex2rtf 2.3.18a-5
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,392 kB
  • sloc: ansic: 20,424; makefile: 660; sh: 478; perl: 22
file content (18 lines) | stat: -rwxr-xr-x 391 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef _STYLES_INCLUDED
#define _STYLES_INCLUDED 1

enum { 
    INSERT_STYLE_NORMAL = 1,
    INSERT_STYLE_FOR_HEADER,
    INSERT_STYLE_NO_STYLE
};
 
void InsertBasicStyle(const char *rtf, int how);
void InsertStyle(const char *the_style);

void SetCurrentStyle(const char *style);
char *GetCurrentStyle(void);
int IsSameAsCurrentStyle(const char *s);
void InsertCurrentStyle(void);

#endif