File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed
ext/mbstring/libmbfl/mbfl Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,12 @@ const mbfl_encoding mbfl_encoding_8bit = {
50
50
& vtbl_wchar_8bit
51
51
};
52
52
53
+ const struct mbfl_identify_vtbl vtbl_identify_8bit = {
54
+ mbfl_no_encoding_8bit ,
55
+ mbfl_filt_ident_common_ctor ,
56
+ mbfl_filt_ident_true
57
+ };
58
+
53
59
const struct mbfl_convert_vtbl vtbl_8bit_wchar = {
54
60
mbfl_no_encoding_8bit ,
55
61
mbfl_no_encoding_wchar ,
Original file line number Diff line number Diff line change 35
35
#include "mbfilter.h"
36
36
37
37
MBFLAPI extern const mbfl_encoding mbfl_encoding_8bit ;
38
+ extern const struct mbfl_identify_vtbl vtbl_identify_8bit ;
38
39
39
40
#endif /* MBFL_MBFILTER_8BIT_H */
Original file line number Diff line number Diff line change @@ -163,6 +163,7 @@ static const struct mbfl_identify_vtbl *mbfl_identify_filter_list[] = {
163
163
& vtbl_identify_utf16 ,
164
164
& vtbl_identify_utf16le ,
165
165
& vtbl_identify_utf16be ,
166
+ & vtbl_identify_8bit ,
166
167
& vtbl_identify_false ,
167
168
NULL
168
169
};
You can’t perform that action at this time.
0 commit comments