Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1152)

Side by Side Diff: third_party/hunspell_new/src/hunspell/w_char.hxx

Issue 1135173004: Rename third_party/hunspell_new back to third_party/hunspell. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 #ifndef __WCHARHXX__
2 #define __WCHARHXX__
3
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;
12
13 // two character arrays
14 struct replentry {
15 char * pattern;
16 char * pattern2;
17 bool start;
18 bool end;
19 };
20
21 #endif
OLDNEW
« no previous file with comments | « third_party/hunspell_new/src/hunspell/utf_info.cxx ('k') | third_party/hunspell_new/src/parsers/Makefile.am » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698