w_char.hxx 297 B

123456789101112131415161718192021
  1. #ifndef __WCHARHXX__
  2. #define __WCHARHXX__
  3. #ifndef GCC
  4. typedef struct {
  5. #else
  6. typedef struct __attribute__ ((packed)) {
  7. #endif
  8. unsigned char l;
  9. unsigned char h;
  10. } w_char;
  11. // two character arrays
  12. struct replentry {
  13. char * pattern;
  14. char * pattern2;
  15. bool start;
  16. bool end;
  17. };
  18. #endif