#ifndef _di_f_errors_buffers_
f_no_data_on_eof, // warning
+ f_no_data_on_eol, // warning
f_no_data_on_eos, // warning
f_no_data_on_stop, // warning
f_none_on_eof, // warning
+ f_none_on_eol, // warning
f_none_on_eos, // warning
f_none_on_stop, // "stop" location was reached
f_error_on_eof,
+ f_error_on_eol,
f_error_on_eos,
f_error_on_stop,
f_buffer_too_small,
f_string_too_small,
f_string_too_large,
f_unterminated_nest,
- f_unterminated_nest_on_eos,
f_unterminated_nest_on_eof,
+ f_unterminated_nest_on_eol,
+ f_unterminated_nest_on_eos,
f_unterminated_nest_on_stop,
f_unterminated_group,
- f_unterminated_group_on_eos,
f_unterminated_group_on_eof,
+ f_unterminated_group_on_eol,
+ f_unterminated_group_on_eos,
f_unterminated_group_on_stop,
#endif // _di_f_errors_buffers_
case f_no_data_on_eof:
*string = "f_no_data_on_eof";
break;
+ case f_no_data_on_eol:
+ *string = "f_no_data_on_eol";
+ break;
case f_no_data_on_eos:
*string = "f_no_data_on_eos";
break;
case f_none_on_eof:
*string = "f_none_on_eof";
break;
+ case f_none_on_eol:
+ *string = "f_none_on_eol";
+ break;
case f_none_on_eos:
*string = "f_none_on_eos";
break;
case f_error_on_eof:
*string = "f_error_on_eof";
break;
+ case f_error_on_eol:
+ *string = "f_error_on_eol";
+ break;
case f_error_on_eos:
*string = "f_error_on_eos";
break;
case f_unterminated_nest:
*string = "f_unterminated_nest";
break;
- case f_unterminated_nest_on_eos:
- *string = "f_unterminated_nest_on_eos";
- break;
case f_unterminated_nest_on_eof:
*string = "f_unterminated_nest_on_eof";
break;
+ case f_unterminated_nest_on_eol:
+ *string = "f_unterminated_nest_on_eol";
+ break;
+ case f_unterminated_nest_on_eos:
+ *string = "f_unterminated_nest_on_eos";
+ break;
case f_unterminated_nest_on_stop:
*string = "f_unterminated_nest_on_stop";
break;
case f_unterminated_group:
*string = "f_unterminated_group";
break;
- case f_unterminated_group_on_eos:
- *string = "f_unterminated_group_on_eos";
- break;
case f_unterminated_group_on_eof:
*string = "f_unterminated_group_on_eof";
break;
+ case f_unterminated_group_on_eol:
+ *string = "f_unterminated_group_on_eol";
+ break;
+ case f_unterminated_group_on_eos:
+ *string = "f_unterminated_group_on_eos";
+ break;
case f_unterminated_group_on_stop:
*string = "f_unterminated_group_on_stop";
break;
#ifndef _di_f_errors_buffers_
case f_no_data_on_eof:
return f_true;
+ case f_no_data_on_eol:
+ return f_true;
case f_no_data_on_eos:
return f_true;
case f_no_data_on_stop:
return f_true;
case f_none_on_eof:
return f_true;
+ case f_none_on_eol:
+ return f_true;
case f_none_on_eos:
return f_true;
case f_none_on_stop: