Fix missing reset of index
[TortoiseGit.git] / ext / hunspell / w_char.hxx
blob3719dd3b77d9cbc990795a71dd66a193dc07572a
1 #ifndef __WCHARHXX__
2 #define __WCHARHXX__
4 #ifndef GCC
5 typedef struct {
6 #else
7 typedef struct __attribute__ ((packed)) {
8 #endif
9 unsigned char l;
10 unsigned char h;
11 } w_char;
13 // two character arrays
14 struct replentry {
15 char * pattern;
16 char * pattern2;
17 bool start;
18 bool end;
21 #endif