WIP - handling u and b prefix
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-01-24 18:38:33 +09:00
parent b8e0b3578b
commit 4d0d50dea9
2 changed files with 22 additions and 24 deletions

View File

@ -612,10 +612,11 @@ struct hcl_flx_qt_t
hcl_ooch_t esc_char;
hcl_oow_t min_len;
hcl_oow_t max_len;
int regex;
unsigned int is_byte: 1;
unsigned int regex: 1;
/* state data */
int escaped;
unsigned int escaped: 4; /* must be large enough to hold 1, 2, 4, 8 */
int digit_count;
hcl_ooci_t c_acc;
};