~ubuntu-branches/ubuntu/saucy/haskell-hs-bibutils/saucy

« back to all changes in this revision

Viewing changes to bibutils/charsets.h

  • Committer: Package Import Robot
  • Author(s): Joachim Breitner
  • Date: 2011-09-26 17:57:15 UTC
  • Revision ID: package-import@ubuntu.com-20110926175715-muzp5giy0rzonss2
Tags: upstream-4.12
ImportĀ upstreamĀ versionĀ 4.12

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * charsets.h
 
3
 *
 
4
 * Copyright (c) Chris Putnam 2003-2010
 
5
 *
 
6
 * Source code released under the GPL
 
7
 *
 
8
 */
 
9
 
 
10
typedef unsigned int charconvert;
 
11
 
 
12
typedef struct allcharconvert_t {
 
13
        char name[15];
 
14
        char name2[25];
 
15
        charconvert *table;
 
16
        int ntable;
 
17
} allcharconvert_t;
 
18
extern allcharconvert_t allcharconvert[];
 
19
extern int nallcharconvert;
 
20
 
 
21