goldendict-ng/winlibs/include/hunspell/w_char.hxx

20 lines
271 B
C++
Raw Normal View History

#ifndef __WCHARHXX__
#define __WCHARHXX__
#ifndef GCC
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