Imported Upstream version 1.22.4
[platform/upstream/groff.git] / src / include / cmap.h
1 // -*- C++ -*-
2 /* Copyright (C) 1989-2018 Free Software Foundation, Inc.
3      Written by James Clark (jjc@jclark.com)
4
5 This file is part of groff.
6
7 groff is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
12 groff is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program.  If not, see <http://www.gnu.org/licenses/>. */
19
20 #ifndef UCHAR_MAX
21 #define UCHAR_MAX 255
22 #endif
23
24 enum cmap_builtin { CMAP_BUILTIN };
25
26 class cmap {
27 public:
28   cmap();
29   cmap(cmap_builtin);
30   int operator()(unsigned char) const;
31   unsigned char &operator[](unsigned char);
32
33   friend class cmap_init;
34 private:
35   unsigned char v[UCHAR_MAX+1];
36 };
37
38 inline int cmap::operator()(unsigned char c) const
39 {
40   return v[c];
41 }
42
43 inline unsigned char &cmap::operator[](unsigned char c)
44 {
45   return v[c];
46 }
47
48 extern cmap cmlower;
49 extern cmap cmupper;
50
51 static class cmap_init {
52   static int initialised;
53 public:
54   cmap_init();
55 } _cmap_init;