summaryrefslogtreecommitdiff
path: root/Build/source/texk/ttf2pk2/case.h
blob: 53578a381c39e87f1705f27b4fd4d9e8594a20ba (plain)
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
/*
 *   case.h
 *
 *   This file is part of the ttf2pk package.
 *
 *   Copyright 1997-1999, 2000 by
 *     Frederic Loyer <loyer@ensta.fr>
 *     Werner Lemberg <wl@gnu.org>
 */

#ifndef CASE_H
#define CASE_H

struct _Case
{
  const char *upper;
  const char *lower;
};
typedef struct _Case Case;


extern Case casetable[];

#endif /* CASE_H */


/* end */