File: acronyms.h

package info (click to toggle)
latex2rtf 2.3.18a-3
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye
  • size: 9,384 kB
  • sloc: ansic: 20,424; makefile: 660; sh: 478; perl: 22
file content (43 lines) | stat: -rwxr-xr-x 819 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#ifndef _ACRONYM_INCLUDED
#define _ACRONYM_INCLUDED 1

enum { 
    ACRONYM_NEWACRO = 1,
    ACRONYM_NEWACROPLURAL,
    ACRONYM_ACRO,
    ACRONYM_ACROPLURAL,
    ACRONYM_ACRODEF,
    ACRONYM_ACRODEFPLURAL
};
    
enum {
    ACRONYM_AC = 1,
    ACRONYM_ACL,
    ACRONYM_ACS,
    ACRONYM_ACF,
    ACRONYM_ACFI,

    ACRONYM_IGNORE = 0x0ff,
    ACRONYM_PLURAL = 0x100,
    ACRONYM_STAR   = 0x200,
    ACRONYM_USED   = 0x400
};

extern int acroPrintWithPage;
extern int acroPrintOnlyUsed;
extern char *acronymAux[];

void UsePackageAcronym(char *options);
void CmdBeginAcronym(int code);
void CmdAcrodef(int code);
void CmdAcroExtra(int code);
void CmdAc(int code);
void CmdAcResetAll(int code);
void CmdAcUsed(int code);
void CmdAC(int code);

int acronymHint(int maxWidth);

extern CommandArray acronymCommands[];

#endif