summaryrefslogtreecommitdiff
path: root/src/myspell/w_char.hxx
blob: a3d11c34cfd2e8b63668a05bc86a27d1b18362db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef __WCHARHXX__
#define __WCHARHXX__

#ifdef WIN32
typedef struct {
#else
typedef struct __attribute__ ((packed)) {
#endif
    unsigned char l;
    unsigned char h;
} w_char;

// two character arrays
struct replentry {
  char * pattern;
  char * pattern2;
};

#endif