blob: 207f97fe8fb056f9e3687a90316e5bc371952eb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef FLIP__H
#define FLIP__H
/*
** tr2latex - troff to LaTeX converter
** COPYRIGHT (C) 1987 Kamal Al-Yahya, 1991,1992 Christian Engel
**
** Module: flip.h
**
** This file contains the words that are placed the opposite way
** in troff and TeX. Is there any more?
*/
const char *flip_list[] =
{
"bar", "dot", "dotdot", "hat", "tilde", "under", "vec"
};
#endif
|