From 8dacac51142c16c8118f9de8225d28708f540684 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sun, 10 Aug 2025 18:44:02 -0500 Subject: [PATCH] Cleanup: Several old status code locations (first pass). The status code used to be broken up into separate groups, wrapped by conditional macros. The conditional macros were removed but I had left the remaining work to be done later. Now is later. This relocates the following sets: - F_array - F_available - F_buffer - F_busy - F_complete - F_data - F_debug - F_end - F_error - F_fine - F_network - F_number - F_warning --- level_0/f_status/c/status.h | 258 ++- level_0/f_status_string/c/status_string.c | 1873 ++++++++--------- level_0/f_status_string/c/status_string.h | 2204 ++++++++++---------- .../tests/unit/c/test-status_string-to.c | 484 ++--- level_1/fl_status_string/c/status_string.c | 1793 ++++++++-------- .../tests/unit/c/test-status_string-from.c | 484 ++--- 6 files changed, 3507 insertions(+), 3589 deletions(-) diff --git a/level_0/f_status/c/status.h b/level_0/f_status/c/status.h index ecd0e00..fc0743f 100644 --- a/level_0/f_status/c/status.h +++ b/level_0/f_status/c/status.h @@ -223,10 +223,23 @@ extern "C" { F_again_not, F_all, F_all_not, + F_array, + F_array_not, + F_array_too_large, + F_array_too_small, F_ascii, F_ascii_not, F_atomic, F_atomic_not, + F_available, + F_available_not, + F_available_not_address, + F_available_not_buffer, + F_available_not_device, + F_available_not_pipe, + F_available_not_port, + F_available_not_process, + F_available_not_socket, F_base, F_base_not, F_begin, @@ -241,6 +254,21 @@ extern "C" { F_bound_not, F_break, F_break_not, + F_buffer, + F_buffer_not, + F_buffer_overflow, + F_buffer_too_large, + F_buffer_too_small, + F_buffer_underflow, + F_busy, + F_busy_address, + F_busy_buffer, + F_busy_device, + F_busy_not, + F_busy_pipe, + F_busy_port, + F_busy_process, + F_busy_socket, F_call, F_call_not, F_capability, @@ -251,6 +279,14 @@ extern "C" { F_child_not, F_complete, F_complete_not, + F_complete_not_utf, + F_complete_not_utf_block, + F_complete_not_utf_eoa, + F_complete_not_utf_eof, + F_complete_not_utf_eol, + F_complete_not_utf_eos, + F_complete_not_utf_start, + F_complete_not_utf_stop, F_connect, F_connect_not, F_connect_refuse, @@ -267,10 +303,21 @@ extern "C" { F_control_group_not, F_critical, F_critical_not, + F_data, + F_data_not, + F_data_not_block, + F_data_not_eoa, + F_data_not_eof, + F_data_not_eol, + F_data_not_eos, + F_data_not_start, + F_data_not_stop, F_dead, F_dead_not, F_deadlock, F_deadlock_not, + F_debug, + F_debug_not, F_descriptor, F_descriptor_not, F_desire, @@ -295,6 +342,31 @@ extern "C" { F_enable_not, F_encoding, F_encoding_not, + F_end, + F_end_not, + F_end_not_block, + F_end_not_eoa, + F_end_not_eof, + F_end_not_eol, + F_end_not_eos, + F_end_not_group, + F_end_not_group_block, + F_end_not_group_eoa, + F_end_not_group_eof, + F_end_not_group_eol, + F_end_not_group_eos, + F_end_not_group_start, + F_end_not_group_stop, + F_end_not_nest, + F_end_not_nest_block, + F_end_not_nest_eoa, + F_end_not_nest_eof, + F_end_not_nest_eol, + F_end_not_nest_eos, + F_end_not_nest_start, + F_end_not_nest_stop, + F_end_not_start, + F_end_not_stop, F_endian, F_endian_big, F_endian_little, @@ -309,6 +381,8 @@ extern "C" { F_eol_not, F_eos, F_eos_not, + F_error, + F_error_not, F_execute, F_execute_not, F_exist, @@ -321,6 +395,8 @@ extern "C" { F_family_not, F_fifo, F_fifo_not, + F_fine, + F_fine_not, F_first, F_first_not, F_footer, @@ -400,6 +476,32 @@ extern "C" { F_name_not, F_need, F_need_not, + F_network, + F_network_busy, + F_network_busy_not, + F_network_client, + F_network_client_not, + F_network_device, + F_network_device_not, + F_network_found, + F_network_found_not, + F_network_lost, + F_network_lost_not, + F_network_not, + F_network_reach, + F_network_reach_client, + F_network_reach_client_not, + F_network_reach_not, + F_network_reach_server, + F_network_reach_server_not, + F_network_server, + F_network_server_not, + F_network_time, + F_network_time_not, + F_network_version_four, + F_network_version_four_not, + F_network_version_six, + F_network_version_six_not, F_next, F_next_not, F_nice, @@ -408,6 +510,23 @@ extern "C" { F_no_not, F_none, F_none_not, + F_number, + F_number_decimal, + F_number_decimal_not, + F_number_divide_by_zero, + F_number_negative, + F_number_negative_not, + F_number_not, + F_number_overflow, + F_number_positive, + F_number_positive_not, + F_number_too_large, + F_number_too_small, + F_number_underflow, + F_number_whole, + F_number_whole_not, + F_number_zero, + F_number_zero_not, F_object, F_object_not, F_once, @@ -554,6 +673,8 @@ extern "C" { F_wait_not, F_want, F_want_not, + F_warning, + F_warning_not, F_wish, F_wish_not, F_world, @@ -564,143 +685,6 @@ extern "C" { F_yes, F_yes_not, - // Return. - F_debug, - F_debug_not, - F_error, - F_error_not, - F_fine, - F_fine_not, - F_warning, - F_warning_not, - - // Array. - F_array, - F_array_not, - F_array_too_large, - F_array_too_small, - - // Available. - F_available, - F_available_not, - F_available_not_address, - F_available_not_buffer, - F_available_not_device, - F_available_not_pipe, - F_available_not_port, - F_available_not_process, - F_available_not_socket, - - // Busy. - F_busy, - F_busy_address, - F_busy_buffer, - F_busy_device, - F_busy_not, - F_busy_pipe, - F_busy_port, - F_busy_process, - F_busy_socket, - - // Network. - F_network, - F_network_busy, - F_network_busy_not, - F_network_client, - F_network_client_not, - F_network_device, - F_network_device_not, - F_network_found, - F_network_found_not, - F_network_lost, - F_network_lost_not, - F_network_not, - F_network_reach, - F_network_reach_client, - F_network_reach_client_not, - F_network_reach_not, - F_network_reach_server, - F_network_reach_server_not, - F_network_server, - F_network_server_not, - F_network_time, - F_network_time_not, - F_network_version_four, - F_network_version_four_not, - F_network_version_six, - F_network_version_six_not, - - // Number. - F_number, - F_number_decimal, - F_number_decimal_not, - F_number_divide_by_zero, - F_number_negative, - F_number_negative_not, - F_number_not, - F_number_overflow, - F_number_positive, - F_number_positive_not, - F_number_too_large, - F_number_too_small, - F_number_underflow, - F_number_whole, - F_number_whole_not, - F_number_zero, - F_number_zero_not, - - // Buffer. - F_buffer, - F_buffer_not, - F_buffer_overflow, - F_buffer_too_large, - F_buffer_too_small, - F_buffer_underflow, - F_complete_not_utf, - F_complete_not_utf_block, - F_complete_not_utf_eoa, - F_complete_not_utf_eof, - F_complete_not_utf_eol, - F_complete_not_utf_eos, - F_complete_not_utf_start, - F_complete_not_utf_stop, - F_data, - F_data_not, - F_data_not_block, - F_data_not_eoa, - F_data_not_eof, - F_data_not_eol, - F_data_not_eos, - F_data_not_start, - F_data_not_stop, - - // End. - F_end, - F_end_not, - F_end_not_block, - F_end_not_eoa, - F_end_not_eof, - F_end_not_eol, - F_end_not_eos, - F_end_not_group, - F_end_not_group_block, - F_end_not_group_eoa, - F_end_not_group_eof, - F_end_not_group_eol, - F_end_not_group_eos, - F_end_not_group_start, - F_end_not_group_stop, - F_end_not_nest, - F_end_not_nest_block, - F_end_not_nest_eoa, - F_end_not_nest_eof, - F_end_not_nest_eol, - F_end_not_nest_eos, - F_end_not_nest_start, - F_end_not_nest_stop, - F_end_not_start, - F_end_not_stop, - // Process. F_process, F_process_not, diff --git a/level_0/f_status_string/c/status_string.c b/level_0/f_status_string/c/status_string.c index a39c35f..ee8047d 100644 --- a/level_0/f_status_string/c/status_string.c +++ b/level_0/f_status_string/c/status_string.c @@ -91,10 +91,23 @@ extern "C" { const f_string_static_t f_status_again_not_s = macro_f_string_static_t_initialize_1(F_status_again_not_s, 0, F_status_again_not_s_length); const f_string_static_t f_status_all_s = macro_f_string_static_t_initialize_1(F_status_all_s, 0, F_status_all_s_length); const f_string_static_t f_status_all_not_s = macro_f_string_static_t_initialize_1(F_status_all_not_s, 0, F_status_all_not_s_length); + const f_string_static_t f_status_array_s = macro_f_string_static_t_initialize_1(F_status_array_s, 0, F_status_array_s_length); + const f_string_static_t f_status_array_not_s = macro_f_string_static_t_initialize_1(F_status_array_not_s, 0, F_status_array_not_s_length); + const f_string_static_t f_status_array_too_large_s = macro_f_string_static_t_initialize_1(F_status_array_too_large_s, 0, F_status_array_too_large_s_length); + const f_string_static_t f_status_array_too_small_s = macro_f_string_static_t_initialize_1(F_status_array_too_small_s, 0, F_status_array_too_small_s_length); const f_string_static_t f_status_ascii_s = macro_f_string_static_t_initialize_1(F_status_ascii_s, 0, F_status_ascii_s_length); const f_string_static_t f_status_ascii_not_s = macro_f_string_static_t_initialize_1(F_status_ascii_not_s, 0, F_status_ascii_not_s_length); const f_string_static_t f_status_atomic_s = macro_f_string_static_t_initialize_1(F_status_atomic_s, 0, F_status_atomic_s_length); const f_string_static_t f_status_atomic_not_s = macro_f_string_static_t_initialize_1(F_status_atomic_not_s, 0, F_status_atomic_not_s_length); + const f_string_static_t f_status_available_s = macro_f_string_static_t_initialize_1(F_status_available_s, 0, F_status_available_s_length); + const f_string_static_t f_status_available_not_s = macro_f_string_static_t_initialize_1(F_status_available_not_s, 0, F_status_available_not_s_length); + const f_string_static_t f_status_available_not_address_s = macro_f_string_static_t_initialize_1(F_status_available_not_address_s, 0, F_status_available_not_address_s_length); + const f_string_static_t f_status_available_not_buffer_s = macro_f_string_static_t_initialize_1(F_status_available_not_buffer_s, 0, F_status_available_not_buffer_s_length); + const f_string_static_t f_status_available_not_device_s = macro_f_string_static_t_initialize_1(F_status_available_not_device_s, 0, F_status_available_not_device_s_length); + const f_string_static_t f_status_available_not_pipe_s = macro_f_string_static_t_initialize_1(F_status_available_not_pipe_s, 0, F_status_available_not_pipe_s_length); + const f_string_static_t f_status_available_not_port_s = macro_f_string_static_t_initialize_1(F_status_available_not_port_s, 0, F_status_available_not_port_s_length); + const f_string_static_t f_status_available_not_process_s = macro_f_string_static_t_initialize_1(F_status_available_not_process_s, 0, F_status_available_not_process_s_length); + const f_string_static_t f_status_available_not_socket_s = macro_f_string_static_t_initialize_1(F_status_available_not_socket_s, 0, F_status_available_not_socket_s_length); const f_string_static_t f_status_base_s = macro_f_string_static_t_initialize_1(F_status_base_s, 0, F_status_base_s_length); const f_string_static_t f_status_base_not_s = macro_f_string_static_t_initialize_1(F_status_base_not_s, 0, F_status_base_not_s_length); const f_string_static_t f_status_begin_s = macro_f_string_static_t_initialize_1(F_status_begin_s, 0, F_status_begin_s_length); @@ -109,6 +122,21 @@ extern "C" { const f_string_static_t f_status_bound_not_s = macro_f_string_static_t_initialize_1(F_status_bound_not_s, 0, F_status_bound_not_s_length); const f_string_static_t f_status_break_s = macro_f_string_static_t_initialize_1(F_status_break_s, 0, F_status_break_s_length); const f_string_static_t f_status_break_not_s = macro_f_string_static_t_initialize_1(F_status_break_not_s, 0, F_status_break_not_s_length); + const f_string_static_t f_status_buffer_s = macro_f_string_static_t_initialize_1(F_status_buffer_s, 0, F_status_buffer_s_length); + const f_string_static_t f_status_buffer_not_s = macro_f_string_static_t_initialize_1(F_status_buffer_not_s, 0, F_status_buffer_not_s_length); + const f_string_static_t f_status_buffer_overflow_s = macro_f_string_static_t_initialize_1(F_status_buffer_overflow_s, 0, F_status_buffer_overflow_s_length); + const f_string_static_t f_status_buffer_too_large_s = macro_f_string_static_t_initialize_1(F_status_buffer_too_large_s, 0, F_status_buffer_too_large_s_length); + const f_string_static_t f_status_buffer_too_small_s = macro_f_string_static_t_initialize_1(F_status_buffer_too_small_s, 0, F_status_buffer_too_small_s_length); + const f_string_static_t f_status_buffer_underflow_s = macro_f_string_static_t_initialize_1(F_status_buffer_underflow_s, 0, F_status_buffer_underflow_s_length); + const f_string_static_t f_status_busy_s = macro_f_string_static_t_initialize_1(F_status_busy_s, 0, F_status_busy_s_length); + const f_string_static_t f_status_busy_address_s = macro_f_string_static_t_initialize_1(F_status_busy_address_s, 0, F_status_busy_address_s_length); + const f_string_static_t f_status_busy_buffer_s = macro_f_string_static_t_initialize_1(F_status_busy_buffer_s, 0, F_status_busy_buffer_s_length); + const f_string_static_t f_status_busy_device_s = macro_f_string_static_t_initialize_1(F_status_busy_device_s, 0, F_status_busy_device_s_length); + const f_string_static_t f_status_busy_not_s = macro_f_string_static_t_initialize_1(F_status_busy_not_s, 0, F_status_busy_not_s_length); + const f_string_static_t f_status_busy_pipe_s = macro_f_string_static_t_initialize_1(F_status_busy_pipe_s, 0, F_status_busy_pipe_s_length); + const f_string_static_t f_status_busy_port_s = macro_f_string_static_t_initialize_1(F_status_busy_port_s, 0, F_status_busy_port_s_length); + const f_string_static_t f_status_busy_process_s = macro_f_string_static_t_initialize_1(F_status_busy_process_s, 0, F_status_busy_process_s_length); + const f_string_static_t f_status_busy_socket_s = macro_f_string_static_t_initialize_1(F_status_busy_socket_s, 0, F_status_busy_socket_s_length); const f_string_static_t f_status_call_s = macro_f_string_static_t_initialize_1(F_status_call_s, 0, F_status_call_s_length); const f_string_static_t f_status_call_not_s = macro_f_string_static_t_initialize_1(F_status_call_not_s, 0, F_status_call_not_s_length); const f_string_static_t f_status_capability_s = macro_f_string_static_t_initialize_1(F_status_capability_s, 0, F_status_capability_s_length); @@ -119,6 +147,14 @@ extern "C" { const f_string_static_t f_status_child_not_s = macro_f_string_static_t_initialize_1(F_status_child_not_s, 0, F_status_child_not_s_length); const f_string_static_t f_status_complete_s = macro_f_string_static_t_initialize_1(F_status_complete_s, 0, F_status_complete_s_length); const f_string_static_t f_status_complete_not_s = macro_f_string_static_t_initialize_1(F_status_complete_not_s, 0, F_status_complete_not_s_length); + const f_string_static_t f_status_complete_not_utf_s = macro_f_string_static_t_initialize_1(F_status_complete_not_utf_s, 0, F_status_complete_not_utf_s_length); + const f_string_static_t f_status_complete_not_utf_block_s = macro_f_string_static_t_initialize_1(F_status_complete_not_utf_block_s, 0, F_status_complete_not_utf_block_s_length); + const f_string_static_t f_status_complete_not_utf_eoa_s = macro_f_string_static_t_initialize_1(F_status_complete_not_utf_eoa_s, 0, F_status_complete_not_utf_eoa_s_length); + const f_string_static_t f_status_complete_not_utf_eof_s = macro_f_string_static_t_initialize_1(F_status_complete_not_utf_eof_s, 0, F_status_complete_not_utf_eof_s_length); + const f_string_static_t f_status_complete_not_utf_eol_s = macro_f_string_static_t_initialize_1(F_status_complete_not_utf_eol_s, 0, F_status_complete_not_utf_eol_s_length); + const f_string_static_t f_status_complete_not_utf_eos_s = macro_f_string_static_t_initialize_1(F_status_complete_not_utf_eos_s, 0, F_status_complete_not_utf_eos_s_length); + const f_string_static_t f_status_complete_not_utf_start_s = macro_f_string_static_t_initialize_1(F_status_complete_not_utf_start_s, 0, F_status_complete_not_utf_start_s_length); + const f_string_static_t f_status_complete_not_utf_stop_s = macro_f_string_static_t_initialize_1(F_status_complete_not_utf_stop_s, 0, F_status_complete_not_utf_stop_s_length); const f_string_static_t f_status_connect_s = macro_f_string_static_t_initialize_1(F_status_connect_s, 0, F_status_connect_s_length); const f_string_static_t f_status_connect_not_s = macro_f_string_static_t_initialize_1(F_status_connect_not_s, 0, F_status_connect_not_s_length); const f_string_static_t f_status_connect_refuse_s = macro_f_string_static_t_initialize_1(F_status_connect_refuse_s, 0, F_status_connect_refuse_s_length); @@ -135,10 +171,21 @@ extern "C" { const f_string_static_t f_status_control_group_not_s = macro_f_string_static_t_initialize_1(F_status_control_group_not_s, 0, F_status_control_group_not_s_length); const f_string_static_t f_status_critical_s = macro_f_string_static_t_initialize_1(F_status_critical_s, 0, F_status_critical_s_length); const f_string_static_t f_status_critical_not_s = macro_f_string_static_t_initialize_1(F_status_critical_not_s, 0, F_status_critical_not_s_length); + const f_string_static_t f_status_data_s = macro_f_string_static_t_initialize_1(F_status_data_s, 0, F_status_data_s_length); + const f_string_static_t f_status_data_not_s = macro_f_string_static_t_initialize_1(F_status_data_not_s, 0, F_status_data_not_s_length); + const f_string_static_t f_status_data_not_block_s = macro_f_string_static_t_initialize_1(F_status_data_not_block_s, 0, F_status_data_not_block_s_length); + const f_string_static_t f_status_data_not_eoa_s = macro_f_string_static_t_initialize_1(F_status_data_not_eoa_s, 0, F_status_data_not_eoa_s_length); + const f_string_static_t f_status_data_not_eof_s = macro_f_string_static_t_initialize_1(F_status_data_not_eof_s, 0, F_status_data_not_eof_s_length); + const f_string_static_t f_status_data_not_eol_s = macro_f_string_static_t_initialize_1(F_status_data_not_eol_s, 0, F_status_data_not_eol_s_length); + const f_string_static_t f_status_data_not_eos_s = macro_f_string_static_t_initialize_1(F_status_data_not_eos_s, 0, F_status_data_not_eos_s_length); + const f_string_static_t f_status_data_not_start_s = macro_f_string_static_t_initialize_1(F_status_data_not_start_s, 0, F_status_data_not_start_s_length); + const f_string_static_t f_status_data_not_stop_s = macro_f_string_static_t_initialize_1(F_status_data_not_stop_s, 0, F_status_data_not_stop_s_length); const f_string_static_t f_status_dead_s = macro_f_string_static_t_initialize_1(F_status_dead_s, 0, F_status_dead_s_length); const f_string_static_t f_status_dead_not_s = macro_f_string_static_t_initialize_1(F_status_dead_not_s, 0, F_status_dead_not_s_length); const f_string_static_t f_status_deadlock_s = macro_f_string_static_t_initialize_1(F_status_deadlock_s, 0, F_status_deadlock_s_length); const f_string_static_t f_status_deadlock_not_s = macro_f_string_static_t_initialize_1(F_status_deadlock_not_s, 0, F_status_deadlock_not_s_length); + const f_string_static_t f_status_debug_s = macro_f_string_static_t_initialize_1(F_status_debug_s, 0, F_status_debug_s_length); + const f_string_static_t f_status_debug_not_s = macro_f_string_static_t_initialize_1(F_status_debug_not_s, 0, F_status_debug_not_s_length); const f_string_static_t f_status_descriptor_s = macro_f_string_static_t_initialize_1(F_status_descriptor_s, 0, F_status_descriptor_s_length); const f_string_static_t f_status_descriptor_not_s = macro_f_string_static_t_initialize_1(F_status_descriptor_not_s, 0, F_status_descriptor_not_s_length); const f_string_static_t f_status_desire_s = macro_f_string_static_t_initialize_1(F_status_desire_s, 0, F_status_desire_s_length); @@ -163,6 +210,31 @@ extern "C" { const f_string_static_t f_status_enable_not_s = macro_f_string_static_t_initialize_1(F_status_enable_not_s, 0, F_status_enable_not_s_length); const f_string_static_t f_status_encoding_s = macro_f_string_static_t_initialize_1(F_status_encoding_s, 0, F_status_encoding_s_length); const f_string_static_t f_status_encoding_not_s = macro_f_string_static_t_initialize_1(F_status_encoding_not_s, 0, F_status_encoding_not_s_length); + const f_string_static_t f_status_end_s = macro_f_string_static_t_initialize_1(F_status_end_s, 0, F_status_end_s_length); + const f_string_static_t f_status_end_not_s = macro_f_string_static_t_initialize_1(F_status_end_not_s, 0, F_status_end_not_s_length); + const f_string_static_t f_status_end_not_block_s = macro_f_string_static_t_initialize_1(F_status_end_not_block_s, 0, F_status_end_not_block_s_length); + const f_string_static_t f_status_end_not_eoa_s = macro_f_string_static_t_initialize_1(F_status_end_not_eoa_s, 0, F_status_end_not_eoa_s_length); + const f_string_static_t f_status_end_not_eof_s = macro_f_string_static_t_initialize_1(F_status_end_not_eof_s, 0, F_status_end_not_eof_s_length); + const f_string_static_t f_status_end_not_eol_s = macro_f_string_static_t_initialize_1(F_status_end_not_eol_s, 0, F_status_end_not_eol_s_length); + const f_string_static_t f_status_end_not_eos_s = macro_f_string_static_t_initialize_1(F_status_end_not_eos_s, 0, F_status_end_not_eos_s_length); + const f_string_static_t f_status_end_not_start_s = macro_f_string_static_t_initialize_1(F_status_end_not_start_s, 0, F_status_end_not_start_s_length); + const f_string_static_t f_status_end_not_stop_s = macro_f_string_static_t_initialize_1(F_status_end_not_stop_s, 0, F_status_end_not_stop_s_length); + const f_string_static_t f_status_end_not_group_s = macro_f_string_static_t_initialize_1(F_status_end_not_group_s, 0, F_status_end_not_group_s_length); + const f_string_static_t f_status_end_not_group_block_s = macro_f_string_static_t_initialize_1(F_status_end_not_group_block_s, 0, F_status_end_not_group_block_s_length); + const f_string_static_t f_status_end_not_group_eoa_s = macro_f_string_static_t_initialize_1(F_status_end_not_group_eoa_s, 0, F_status_end_not_group_eoa_s_length); + const f_string_static_t f_status_end_not_group_eof_s = macro_f_string_static_t_initialize_1(F_status_end_not_group_eof_s, 0, F_status_end_not_group_eof_s_length); + const f_string_static_t f_status_end_not_group_eol_s = macro_f_string_static_t_initialize_1(F_status_end_not_group_eol_s, 0, F_status_end_not_group_eol_s_length); + const f_string_static_t f_status_end_not_group_eos_s = macro_f_string_static_t_initialize_1(F_status_end_not_group_eos_s, 0, F_status_end_not_group_eos_s_length); + const f_string_static_t f_status_end_not_group_start_s = macro_f_string_static_t_initialize_1(F_status_end_not_group_start_s, 0, F_status_end_not_group_start_s_length); + const f_string_static_t f_status_end_not_group_stop_s = macro_f_string_static_t_initialize_1(F_status_end_not_group_stop_s, 0, F_status_end_not_group_stop_s_length); + const f_string_static_t f_status_end_not_nest_s = macro_f_string_static_t_initialize_1(F_status_end_not_nest_s, 0, F_status_end_not_nest_s_length); + const f_string_static_t f_status_end_not_nest_block_s = macro_f_string_static_t_initialize_1(F_status_end_not_nest_block_s, 0, F_status_end_not_nest_block_s_length); + const f_string_static_t f_status_end_not_nest_eoa_s = macro_f_string_static_t_initialize_1(F_status_end_not_nest_eoa_s, 0, F_status_end_not_nest_eoa_s_length); + const f_string_static_t f_status_end_not_nest_eof_s = macro_f_string_static_t_initialize_1(F_status_end_not_nest_eof_s, 0, F_status_end_not_nest_eof_s_length); + const f_string_static_t f_status_end_not_nest_eol_s = macro_f_string_static_t_initialize_1(F_status_end_not_nest_eol_s, 0, F_status_end_not_nest_eol_s_length); + const f_string_static_t f_status_end_not_nest_eos_s = macro_f_string_static_t_initialize_1(F_status_end_not_nest_eos_s, 0, F_status_end_not_nest_eos_s_length); + const f_string_static_t f_status_end_not_nest_start_s = macro_f_string_static_t_initialize_1(F_status_end_not_nest_start_s, 0, F_status_end_not_nest_start_s_length); + const f_string_static_t f_status_end_not_nest_stop_s = macro_f_string_static_t_initialize_1(F_status_end_not_nest_stop_s, 0, F_status_end_not_nest_stop_s_length); const f_string_static_t f_status_endian_s = macro_f_string_static_t_initialize_1(F_status_endian_s, 0, F_status_endian_s_length); const f_string_static_t f_status_endian_big_s = macro_f_string_static_t_initialize_1(F_status_endian_big_s, 0, F_status_endian_big_s_length); const f_string_static_t f_status_endian_little_s = macro_f_string_static_t_initialize_1(F_status_endian_little_s, 0, F_status_endian_little_s_length); @@ -177,6 +249,8 @@ extern "C" { const f_string_static_t f_status_eol_not_s = macro_f_string_static_t_initialize_1(F_status_eol_not_s, 0, F_status_eol_not_s_length); const f_string_static_t f_status_eos_s = macro_f_string_static_t_initialize_1(F_status_eos_s, 0, F_status_eos_s_length); const f_string_static_t f_status_eos_not_s = macro_f_string_static_t_initialize_1(F_status_eos_not_s, 0, F_status_eos_not_s_length); + const f_string_static_t f_status_error_s = macro_f_string_static_t_initialize_1(F_status_error_s, 0, F_status_error_s_length); + const f_string_static_t f_status_error_not_s = macro_f_string_static_t_initialize_1(F_status_error_not_s, 0, F_status_error_not_s_length); const f_string_static_t f_status_execute_s = macro_f_string_static_t_initialize_1(F_status_execute_s, 0, F_status_execute_s_length); const f_string_static_t f_status_execute_not_s = macro_f_string_static_t_initialize_1(F_status_execute_not_s, 0, F_status_execute_not_s_length); const f_string_static_t f_status_exist_s = macro_f_string_static_t_initialize_1(F_status_exist_s, 0, F_status_exist_s_length); @@ -189,6 +263,8 @@ extern "C" { const f_string_static_t f_status_family_not_s = macro_f_string_static_t_initialize_1(F_status_family_not_s, 0, F_status_family_not_s_length); const f_string_static_t f_status_fifo_s = macro_f_string_static_t_initialize_1(F_status_fifo_s, 0, F_status_fifo_s_length); const f_string_static_t f_status_fifo_not_s = macro_f_string_static_t_initialize_1(F_status_fifo_not_s, 0, F_status_fifo_not_s_length); + const f_string_static_t f_status_fine_s = macro_f_string_static_t_initialize_1(F_status_fine_s, 0, F_status_fine_s_length); + const f_string_static_t f_status_fine_not_s = macro_f_string_static_t_initialize_1(F_status_fine_not_s, 0, F_status_fine_not_s_length); const f_string_static_t f_status_first_s = macro_f_string_static_t_initialize_1(F_status_first_s, 0, F_status_first_s_length); const f_string_static_t f_status_first_not_s = macro_f_string_static_t_initialize_1(F_status_first_not_s, 0, F_status_first_not_s_length); const f_string_static_t f_status_footer_s = macro_f_string_static_t_initialize_1(F_status_footer_s, 0, F_status_footer_s_length); @@ -268,6 +344,32 @@ extern "C" { const f_string_static_t f_status_name_not_s = macro_f_string_static_t_initialize_1(F_status_name_not_s, 0, F_status_name_not_s_length); const f_string_static_t f_status_need_s = macro_f_string_static_t_initialize_1(F_status_need_s, 0, F_status_need_s_length); const f_string_static_t f_status_need_not_s = macro_f_string_static_t_initialize_1(F_status_need_not_s, 0, F_status_need_not_s_length); + const f_string_static_t f_status_network_s = macro_f_string_static_t_initialize_1(F_status_network_s, 0, F_status_network_s_length); + const f_string_static_t f_status_network_busy_s = macro_f_string_static_t_initialize_1(F_status_network_busy_s, 0, F_status_network_busy_s_length); + const f_string_static_t f_status_network_busy_not_s = macro_f_string_static_t_initialize_1(F_status_network_busy_not_s, 0, F_status_network_busy_not_s_length); + const f_string_static_t f_status_network_client_s = macro_f_string_static_t_initialize_1(F_status_network_client_s, 0, F_status_network_client_s_length); + const f_string_static_t f_status_network_client_not_s = macro_f_string_static_t_initialize_1(F_status_network_client_not_s, 0, F_status_network_client_not_s_length); + const f_string_static_t f_status_network_device_s = macro_f_string_static_t_initialize_1(F_status_network_device_s, 0, F_status_network_device_s_length); + const f_string_static_t f_status_network_device_not_s = macro_f_string_static_t_initialize_1(F_status_network_device_not_s, 0, F_status_network_device_not_s_length); + const f_string_static_t f_status_network_found_s = macro_f_string_static_t_initialize_1(F_status_network_found_s, 0, F_status_network_found_s_length); + const f_string_static_t f_status_network_found_not_s = macro_f_string_static_t_initialize_1(F_status_network_found_not_s, 0, F_status_network_found_not_s_length); + const f_string_static_t f_status_network_lost_s = macro_f_string_static_t_initialize_1(F_status_network_lost_s, 0, F_status_network_lost_s_length); + const f_string_static_t f_status_network_lost_not_s = macro_f_string_static_t_initialize_1(F_status_network_lost_not_s, 0, F_status_network_lost_not_s_length); + const f_string_static_t f_status_network_not_s = macro_f_string_static_t_initialize_1(F_status_network_not_s, 0, F_status_network_not_s_length); + const f_string_static_t f_status_network_reach_s = macro_f_string_static_t_initialize_1(F_status_network_reach_s, 0, F_status_network_reach_s_length); + const f_string_static_t f_status_network_reach_client_s = macro_f_string_static_t_initialize_1(F_status_network_reach_client_s, 0, F_status_network_reach_client_s_length); + const f_string_static_t f_status_network_reach_client_not_s = macro_f_string_static_t_initialize_1(F_status_network_reach_client_not_s, 0, F_status_network_reach_client_not_s_length); + const f_string_static_t f_status_network_reach_not_s = macro_f_string_static_t_initialize_1(F_status_network_reach_not_s, 0, F_status_network_reach_not_s_length); + const f_string_static_t f_status_network_reach_server_s = macro_f_string_static_t_initialize_1(F_status_network_reach_server_s, 0, F_status_network_reach_server_s_length); + const f_string_static_t f_status_network_reach_server_not_s = macro_f_string_static_t_initialize_1(F_status_network_reach_server_not_s, 0, F_status_network_reach_server_not_s_length); + const f_string_static_t f_status_network_server_s = macro_f_string_static_t_initialize_1(F_status_network_server_s, 0, F_status_network_server_s_length); + const f_string_static_t f_status_network_server_not_s = macro_f_string_static_t_initialize_1(F_status_network_server_not_s, 0, F_status_network_server_not_s_length); + const f_string_static_t f_status_network_time_s = macro_f_string_static_t_initialize_1(F_status_network_time_s, 0, F_status_network_time_s_length); + const f_string_static_t f_status_network_time_not_s = macro_f_string_static_t_initialize_1(F_status_network_time_not_s, 0, F_status_network_time_not_s_length); + const f_string_static_t f_status_network_version_four_s = macro_f_string_static_t_initialize_1(F_status_network_version_four_s, 0, F_status_network_version_four_s_length); + const f_string_static_t f_status_network_version_four_not_s = macro_f_string_static_t_initialize_1(F_status_network_version_four_not_s, 0, F_status_network_version_four_not_s_length); + const f_string_static_t f_status_network_version_six_s = macro_f_string_static_t_initialize_1(F_status_network_version_six_s, 0, F_status_network_version_six_s_length); + const f_string_static_t f_status_network_version_six_not_s = macro_f_string_static_t_initialize_1(F_status_network_version_six_not_s, 0, F_status_network_version_six_not_s_length); const f_string_static_t f_status_next_s = macro_f_string_static_t_initialize_1(F_status_next_s, 0, F_status_next_s_length); const f_string_static_t f_status_next_not_s = macro_f_string_static_t_initialize_1(F_status_next_not_s, 0, F_status_next_not_s_length); const f_string_static_t f_status_nice_s = macro_f_string_static_t_initialize_1(F_status_nice_s, 0, F_status_nice_s_length); @@ -276,8 +378,32 @@ extern "C" { const f_string_static_t f_status_no_not_s = macro_f_string_static_t_initialize_1(F_status_no_not_s, 0, F_status_no_not_s_length); const f_string_static_t f_status_none_s = macro_f_string_static_t_initialize_1(F_status_none_s, 0, F_status_none_s_length); const f_string_static_t f_status_none_not_s = macro_f_string_static_t_initialize_1(F_status_none_not_s, 0, F_status_none_not_s_length); + const f_string_static_t f_status_number_s = macro_f_string_static_t_initialize_1(F_status_number_s, 0, F_status_number_s_length); + const f_string_static_t f_status_number_decimal_s = macro_f_string_static_t_initialize_1(F_status_number_decimal_s, 0, F_status_number_decimal_s_length); + const f_string_static_t f_status_number_decimal_not_s = macro_f_string_static_t_initialize_1(F_status_number_decimal_not_s, 0, F_status_number_decimal_not_s_length); + const f_string_static_t f_status_number_divide_by_zero_s = macro_f_string_static_t_initialize_1(F_status_number_divide_by_zero_s, 0, F_status_number_divide_by_zero_s_length); + const f_string_static_t f_status_number_negative_s = macro_f_string_static_t_initialize_1(F_status_number_negative_s, 0, F_status_number_negative_s_length); + const f_string_static_t f_status_number_negative_not_s = macro_f_string_static_t_initialize_1(F_status_number_negative_not_s, 0, F_status_number_negative_not_s_length); + const f_string_static_t f_status_number_not_s = macro_f_string_static_t_initialize_1(F_status_number_not_s, 0, F_status_number_not_s_length); + const f_string_static_t f_status_number_overflow_s = macro_f_string_static_t_initialize_1(F_status_number_overflow_s, 0, F_status_number_overflow_s_length); + const f_string_static_t f_status_number_positive_s = macro_f_string_static_t_initialize_1(F_status_number_positive_s, 0, F_status_number_positive_s_length); + const f_string_static_t f_status_number_positive_not_s = macro_f_string_static_t_initialize_1(F_status_number_positive_not_s, 0, F_status_number_positive_not_s_length); + const f_string_static_t f_status_number_too_large_s = macro_f_string_static_t_initialize_1(F_status_number_too_large_s, 0, F_status_number_too_large_s_length); + const f_string_static_t f_status_number_too_small_s = macro_f_string_static_t_initialize_1(F_status_number_too_small_s, 0, F_status_number_too_small_s_length); + const f_string_static_t f_status_number_underflow_s = macro_f_string_static_t_initialize_1(F_status_number_underflow_s, 0, F_status_number_underflow_s_length); + const f_string_static_t f_status_number_whole_s = macro_f_string_static_t_initialize_1(F_status_number_whole_s, 0, F_status_number_whole_s_length); + const f_string_static_t f_status_number_whole_not_s = macro_f_string_static_t_initialize_1(F_status_number_whole_not_s, 0, F_status_number_whole_not_s_length); + const f_string_static_t f_status_number_zero_s = macro_f_string_static_t_initialize_1(F_status_number_zero_s, 0, F_status_number_zero_s_length); + const f_string_static_t f_status_number_zero_not_s = macro_f_string_static_t_initialize_1(F_status_number_zero_not_s, 0, F_status_number_zero_not_s_length); const f_string_static_t f_status_object_s = macro_f_string_static_t_initialize_1(F_status_object_s, 0, F_status_object_s_length); const f_string_static_t f_status_object_not_s = macro_f_string_static_t_initialize_1(F_status_object_not_s, 0, F_status_object_not_s_length); + const f_string_static_t f_status_okay_block_s = macro_f_string_static_t_initialize_1(F_status_okay_block_s, 0, F_status_okay_block_s_length); + const f_string_static_t f_status_okay_eoa_s = macro_f_string_static_t_initialize_1(F_status_okay_eoa_s, 0, F_status_okay_eoa_s_length); + const f_string_static_t f_status_okay_eof_s = macro_f_string_static_t_initialize_1(F_status_okay_eof_s, 0, F_status_okay_eof_s_length); + const f_string_static_t f_status_okay_eol_s = macro_f_string_static_t_initialize_1(F_status_okay_eol_s, 0, F_status_okay_eol_s_length); + const f_string_static_t f_status_okay_eos_s = macro_f_string_static_t_initialize_1(F_status_okay_eos_s, 0, F_status_okay_eos_s_length); + const f_string_static_t f_status_okay_start_s = macro_f_string_static_t_initialize_1(F_status_okay_start_s, 0, F_status_okay_start_s_length); + const f_string_static_t f_status_okay_stop_s = macro_f_string_static_t_initialize_1(F_status_okay_stop_s, 0, F_status_okay_stop_s_length); const f_string_static_t f_status_once_s = macro_f_string_static_t_initialize_1(F_status_once_s, 0, F_status_once_s_length); const f_string_static_t f_status_once_not_s = macro_f_string_static_t_initialize_1(F_status_once_not_s, 0, F_status_once_not_s_length); const f_string_static_t f_status_option_s = macro_f_string_static_t_initialize_1(F_status_option_s, 0, F_status_option_s_length); @@ -422,6 +548,8 @@ extern "C" { const f_string_static_t f_status_wait_not_s = macro_f_string_static_t_initialize_1(F_status_wait_not_s, 0, F_status_wait_not_s_length); const f_string_static_t f_status_want_s = macro_f_string_static_t_initialize_1(F_status_want_s, 0, F_status_want_s_length); const f_string_static_t f_status_want_not_s = macro_f_string_static_t_initialize_1(F_status_want_not_s, 0, F_status_want_not_s_length); + const f_string_static_t f_status_warning_s = macro_f_string_static_t_initialize_1(F_status_warning_s, 0, F_status_warning_s_length); + const f_string_static_t f_status_warning_not_s = macro_f_string_static_t_initialize_1(F_status_warning_not_s, 0, F_status_warning_not_s_length); const f_string_static_t f_status_wish_s = macro_f_string_static_t_initialize_1(F_status_wish_s, 0, F_status_wish_s_length); const f_string_static_t f_status_wish_not_s = macro_f_string_static_t_initialize_1(F_status_wish_not_s, 0, F_status_wish_not_s_length); const f_string_static_t f_status_world_s = macro_f_string_static_t_initialize_1(F_status_world_s, 0, F_status_world_s_length); @@ -432,211 +560,67 @@ extern "C" { const f_string_static_t f_status_yes_s = macro_f_string_static_t_initialize_1(F_status_yes_s, 0, F_status_yes_s_length); const f_string_static_t f_status_yes_not_s = macro_f_string_static_t_initialize_1(F_status_yes_not_s, 0, F_status_yes_not_s_length); - // Return. - const f_string_static_t f_status_debug_s = macro_f_string_static_t_initialize_1(F_status_debug_s, 0, F_status_debug_s_length); - const f_string_static_t f_status_debug_not_s = macro_f_string_static_t_initialize_1(F_status_debug_not_s, 0, F_status_debug_not_s_length); - const f_string_static_t f_status_error_s = macro_f_string_static_t_initialize_1(F_status_error_s, 0, F_status_error_s_length); - const f_string_static_t f_status_error_not_s = macro_f_string_static_t_initialize_1(F_status_error_not_s, 0, F_status_error_not_s_length); - const f_string_static_t f_status_fine_s = macro_f_string_static_t_initialize_1(F_status_fine_s, 0, F_status_fine_s_length); - const f_string_static_t f_status_fine_not_s = macro_f_string_static_t_initialize_1(F_status_fine_not_s, 0, F_status_fine_not_s_length); - const f_string_static_t f_status_warning_s = macro_f_string_static_t_initialize_1(F_status_warning_s, 0, F_status_warning_s_length); - const f_string_static_t f_status_warning_not_s = macro_f_string_static_t_initialize_1(F_status_warning_not_s, 0, F_status_warning_not_s_length); - - // Array. - const f_string_static_t f_status_array_s = macro_f_string_static_t_initialize_1(F_status_array_s, 0, F_status_array_s_length); - const f_string_static_t f_status_array_not_s = macro_f_string_static_t_initialize_1(F_status_array_not_s, 0, F_status_array_not_s_length); - const f_string_static_t f_status_array_too_large_s = macro_f_string_static_t_initialize_1(F_status_array_too_large_s, 0, F_status_array_too_large_s_length); - const f_string_static_t f_status_array_too_small_s = macro_f_string_static_t_initialize_1(F_status_array_too_small_s, 0, F_status_array_too_small_s_length); + // Process. + const f_string_static_t f_status_process_s = macro_f_string_static_t_initialize_1(F_status_process_s, 0, F_status_process_s_length); + const f_string_static_t f_status_process_not_s = macro_f_string_static_t_initialize_1(F_status_process_not_s, 0, F_status_process_not_s_length); + const f_string_static_t f_status_process_too_many_s = macro_f_string_static_t_initialize_1(F_status_process_too_many_s, 0, F_status_process_too_many_s_length); - // Available. - const f_string_static_t f_status_available_s = macro_f_string_static_t_initialize_1(F_status_available_s, 0, F_status_available_s_length); - const f_string_static_t f_status_available_not_s = macro_f_string_static_t_initialize_1(F_status_available_not_s, 0, F_status_available_not_s_length); - const f_string_static_t f_status_available_not_address_s = macro_f_string_static_t_initialize_1(F_status_available_not_address_s, 0, F_status_available_not_address_s_length); - const f_string_static_t f_status_available_not_buffer_s = macro_f_string_static_t_initialize_1(F_status_available_not_buffer_s, 0, F_status_available_not_buffer_s_length); - const f_string_static_t f_status_available_not_device_s = macro_f_string_static_t_initialize_1(F_status_available_not_device_s, 0, F_status_available_not_device_s_length); - const f_string_static_t f_status_available_not_pipe_s = macro_f_string_static_t_initialize_1(F_status_available_not_pipe_s, 0, F_status_available_not_pipe_s_length); - const f_string_static_t f_status_available_not_port_s = macro_f_string_static_t_initialize_1(F_status_available_not_port_s, 0, F_status_available_not_port_s_length); - const f_string_static_t f_status_available_not_process_s = macro_f_string_static_t_initialize_1(F_status_available_not_process_s, 0, F_status_available_not_process_s_length); - const f_string_static_t f_status_available_not_socket_s = macro_f_string_static_t_initialize_1(F_status_available_not_socket_s, 0, F_status_available_not_socket_s_length); + // Instance. + const f_string_static_t f_status_instance_s = macro_f_string_static_t_initialize_1(F_status_instance_s, 0, F_status_instance_s_length); + const f_string_static_t f_status_instance_not_s = macro_f_string_static_t_initialize_1(F_status_instance_not_s, 0, F_status_instance_not_s_length); + const f_string_static_t f_status_instance_too_many_s = macro_f_string_static_t_initialize_1(F_status_instance_too_many_s, 0, F_status_instance_too_many_s_length); - // Busy. - const f_string_static_t f_status_busy_s = macro_f_string_static_t_initialize_1(F_status_busy_s, 0, F_status_busy_s_length); - const f_string_static_t f_status_busy_address_s = macro_f_string_static_t_initialize_1(F_status_busy_address_s, 0, F_status_busy_address_s_length); - const f_string_static_t f_status_busy_buffer_s = macro_f_string_static_t_initialize_1(F_status_busy_buffer_s, 0, F_status_busy_buffer_s_length); - const f_string_static_t f_status_busy_device_s = macro_f_string_static_t_initialize_1(F_status_busy_device_s, 0, F_status_busy_device_s_length); - const f_string_static_t f_status_busy_not_s = macro_f_string_static_t_initialize_1(F_status_busy_not_s, 0, F_status_busy_not_s_length); - const f_string_static_t f_status_busy_pipe_s = macro_f_string_static_t_initialize_1(F_status_busy_pipe_s, 0, F_status_busy_pipe_s_length); - const f_string_static_t f_status_busy_port_s = macro_f_string_static_t_initialize_1(F_status_busy_port_s, 0, F_status_busy_port_s_length); - const f_string_static_t f_status_busy_process_s = macro_f_string_static_t_initialize_1(F_status_busy_process_s, 0, F_status_busy_process_s_length); - const f_string_static_t f_status_busy_socket_s = macro_f_string_static_t_initialize_1(F_status_busy_socket_s, 0, F_status_busy_socket_s_length); + // File. + const f_string_static_t f_status_file_s = macro_f_string_static_t_initialize_1(F_status_file_s, 0, F_status_file_s_length); + const f_string_static_t f_status_file_close_s = macro_f_string_static_t_initialize_1(F_status_file_close_s, 0, F_status_file_close_s_length); + const f_string_static_t f_status_file_closed_s = macro_f_string_static_t_initialize_1(F_status_file_closed_s, 0, F_status_file_closed_s_length); + const f_string_static_t f_status_file_descriptor_s = macro_f_string_static_t_initialize_1(F_status_file_descriptor_s, 0, F_status_file_descriptor_s_length); + const f_string_static_t f_status_file_descriptor_max_s = macro_f_string_static_t_initialize_1(F_status_file_descriptor_max_s, 0, F_status_file_descriptor_max_s_length); + const f_string_static_t f_status_file_descriptor_not_s = macro_f_string_static_t_initialize_1(F_status_file_descriptor_not_s, 0, F_status_file_descriptor_not_s_length); + const f_string_static_t f_status_file_empty_s = macro_f_string_static_t_initialize_1(F_status_file_empty_s, 0, F_status_file_empty_s_length); + const f_string_static_t f_status_file_empty_not_s = macro_f_string_static_t_initialize_1(F_status_file_empty_not_s, 0, F_status_file_empty_not_s_length); + const f_string_static_t f_status_file_flush_s = macro_f_string_static_t_initialize_1(F_status_file_flush_s, 0, F_status_file_flush_s_length); + const f_string_static_t f_status_file_found_s = macro_f_string_static_t_initialize_1(F_status_file_found_s, 0, F_status_file_found_s_length); + const f_string_static_t f_status_file_found_not_s = macro_f_string_static_t_initialize_1(F_status_file_found_not_s, 0, F_status_file_found_not_s_length); + const f_string_static_t f_status_file_not_s = macro_f_string_static_t_initialize_1(F_status_file_not_s, 0, F_status_file_not_s_length); + const f_string_static_t f_status_file_open_s = macro_f_string_static_t_initialize_1(F_status_file_open_s, 0, F_status_file_open_s_length); + const f_string_static_t f_status_file_open_max_s = macro_f_string_static_t_initialize_1(F_status_file_open_max_s, 0, F_status_file_open_max_s_length); + const f_string_static_t f_status_file_opened_s = macro_f_string_static_t_initialize_1(F_status_file_opened_s, 0, F_status_file_opened_s_length); + const f_string_static_t f_status_file_overflow_s = macro_f_string_static_t_initialize_1(F_status_file_overflow_s, 0, F_status_file_overflow_s_length); + const f_string_static_t f_status_file_purge_s = macro_f_string_static_t_initialize_1(F_status_file_purge_s, 0, F_status_file_purge_s_length); + const f_string_static_t f_status_file_read_s = macro_f_string_static_t_initialize_1(F_status_file_read_s, 0, F_status_file_read_s_length); + const f_string_static_t f_status_file_reallocation_s = macro_f_string_static_t_initialize_1(F_status_file_reallocation_s, 0, F_status_file_reallocation_s_length); + const f_string_static_t f_status_file_seek_s = macro_f_string_static_t_initialize_1(F_status_file_seek_s, 0, F_status_file_seek_s_length); + const f_string_static_t f_status_file_stat_s = macro_f_string_static_t_initialize_1(F_status_file_stat_s, 0, F_status_file_stat_s_length); + const f_string_static_t f_status_file_synchronize_s = macro_f_string_static_t_initialize_1(F_status_file_synchronize_s, 0, F_status_file_synchronize_s_length); + const f_string_static_t f_status_file_type_block_s = macro_f_string_static_t_initialize_1(F_status_file_type_block_s, 0, F_status_file_type_block_s_length); + const f_string_static_t f_status_file_type_character_s = macro_f_string_static_t_initialize_1(F_status_file_type_character_s, 0, F_status_file_type_character_s_length); + const f_string_static_t f_status_file_type_directory_s = macro_f_string_static_t_initialize_1(F_status_file_type_directory_s, 0, F_status_file_type_directory_s_length); + const f_string_static_t f_status_file_type_fifo_s = macro_f_string_static_t_initialize_1(F_status_file_type_fifo_s, 0, F_status_file_type_fifo_s_length); + const f_string_static_t f_status_file_type_link_s = macro_f_string_static_t_initialize_1(F_status_file_type_link_s, 0, F_status_file_type_link_s_length); + const f_string_static_t f_status_file_type_not_block_s = macro_f_string_static_t_initialize_1(F_status_file_type_not_block_s, 0, F_status_file_type_not_block_s_length); + const f_string_static_t f_status_file_type_not_character_s = macro_f_string_static_t_initialize_1(F_status_file_type_not_character_s, 0, F_status_file_type_not_character_s_length); + const f_string_static_t f_status_file_type_not_directory_s = macro_f_string_static_t_initialize_1(F_status_file_type_not_directory_s, 0, F_status_file_type_not_directory_s_length); + const f_string_static_t f_status_file_type_not_fifo_s = macro_f_string_static_t_initialize_1(F_status_file_type_not_fifo_s, 0, F_status_file_type_not_fifo_s_length); + const f_string_static_t f_status_file_type_not_link_s = macro_f_string_static_t_initialize_1(F_status_file_type_not_link_s, 0, F_status_file_type_not_link_s_length); + const f_string_static_t f_status_file_type_not_pipe_s = macro_f_string_static_t_initialize_1(F_status_file_type_not_pipe_s, 0, F_status_file_type_not_pipe_s_length); + const f_string_static_t f_status_file_type_not_regular_s = macro_f_string_static_t_initialize_1(F_status_file_type_not_regular_s, 0, F_status_file_type_not_regular_s_length); + const f_string_static_t f_status_file_type_not_socket_s = macro_f_string_static_t_initialize_1(F_status_file_type_not_socket_s, 0, F_status_file_type_not_socket_s_length); + const f_string_static_t f_status_file_type_not_unknown_s = macro_f_string_static_t_initialize_1(F_status_file_type_not_unknown_s, 0, F_status_file_type_not_unknown_s_length); + const f_string_static_t f_status_file_type_pipe_s = macro_f_string_static_t_initialize_1(F_status_file_type_pipe_s, 0, F_status_file_type_pipe_s_length); + const f_string_static_t f_status_file_type_regular_s = macro_f_string_static_t_initialize_1(F_status_file_type_regular_s, 0, F_status_file_type_regular_s_length); + const f_string_static_t f_status_file_type_socket_s = macro_f_string_static_t_initialize_1(F_status_file_type_socket_s, 0, F_status_file_type_socket_s_length); + const f_string_static_t f_status_file_type_unknown_s = macro_f_string_static_t_initialize_1(F_status_file_type_unknown_s, 0, F_status_file_type_unknown_s_length); + const f_string_static_t f_status_file_underflow_s = macro_f_string_static_t_initialize_1(F_status_file_underflow_s, 0, F_status_file_underflow_s_length); + const f_string_static_t f_status_file_utf_s = macro_f_string_static_t_initialize_1(F_status_file_utf_s, 0, F_status_file_utf_s_length); + const f_string_static_t f_status_file_utf_not_s = macro_f_string_static_t_initialize_1(F_status_file_utf_not_s, 0, F_status_file_utf_not_s_length); + const f_string_static_t f_status_file_write_s = macro_f_string_static_t_initialize_1(F_status_file_write_s, 0, F_status_file_write_s_length); - // Network. - const f_string_static_t f_status_network_s = macro_f_string_static_t_initialize_1(F_status_network_s, 0, F_status_network_s_length); - const f_string_static_t f_status_network_busy_s = macro_f_string_static_t_initialize_1(F_status_network_busy_s, 0, F_status_network_busy_s_length); - const f_string_static_t f_status_network_busy_not_s = macro_f_string_static_t_initialize_1(F_status_network_busy_not_s, 0, F_status_network_busy_not_s_length); - const f_string_static_t f_status_network_client_s = macro_f_string_static_t_initialize_1(F_status_network_client_s, 0, F_status_network_client_s_length); - const f_string_static_t f_status_network_client_not_s = macro_f_string_static_t_initialize_1(F_status_network_client_not_s, 0, F_status_network_client_not_s_length); - const f_string_static_t f_status_network_device_s = macro_f_string_static_t_initialize_1(F_status_network_device_s, 0, F_status_network_device_s_length); - const f_string_static_t f_status_network_device_not_s = macro_f_string_static_t_initialize_1(F_status_network_device_not_s, 0, F_status_network_device_not_s_length); - const f_string_static_t f_status_network_found_s = macro_f_string_static_t_initialize_1(F_status_network_found_s, 0, F_status_network_found_s_length); - const f_string_static_t f_status_network_found_not_s = macro_f_string_static_t_initialize_1(F_status_network_found_not_s, 0, F_status_network_found_not_s_length); - const f_string_static_t f_status_network_lost_s = macro_f_string_static_t_initialize_1(F_status_network_lost_s, 0, F_status_network_lost_s_length); - const f_string_static_t f_status_network_lost_not_s = macro_f_string_static_t_initialize_1(F_status_network_lost_not_s, 0, F_status_network_lost_not_s_length); - const f_string_static_t f_status_network_not_s = macro_f_string_static_t_initialize_1(F_status_network_not_s, 0, F_status_network_not_s_length); - const f_string_static_t f_status_network_reach_s = macro_f_string_static_t_initialize_1(F_status_network_reach_s, 0, F_status_network_reach_s_length); - const f_string_static_t f_status_network_reach_client_s = macro_f_string_static_t_initialize_1(F_status_network_reach_client_s, 0, F_status_network_reach_client_s_length); - const f_string_static_t f_status_network_reach_client_not_s = macro_f_string_static_t_initialize_1(F_status_network_reach_client_not_s, 0, F_status_network_reach_client_not_s_length); - const f_string_static_t f_status_network_reach_not_s = macro_f_string_static_t_initialize_1(F_status_network_reach_not_s, 0, F_status_network_reach_not_s_length); - const f_string_static_t f_status_network_reach_server_s = macro_f_string_static_t_initialize_1(F_status_network_reach_server_s, 0, F_status_network_reach_server_s_length); - const f_string_static_t f_status_network_reach_server_not_s = macro_f_string_static_t_initialize_1(F_status_network_reach_server_not_s, 0, F_status_network_reach_server_not_s_length); - const f_string_static_t f_status_network_server_s = macro_f_string_static_t_initialize_1(F_status_network_server_s, 0, F_status_network_server_s_length); - const f_string_static_t f_status_network_server_not_s = macro_f_string_static_t_initialize_1(F_status_network_server_not_s, 0, F_status_network_server_not_s_length); - const f_string_static_t f_status_network_time_s = macro_f_string_static_t_initialize_1(F_status_network_time_s, 0, F_status_network_time_s_length); - const f_string_static_t f_status_network_time_not_s = macro_f_string_static_t_initialize_1(F_status_network_time_not_s, 0, F_status_network_time_not_s_length); - const f_string_static_t f_status_network_version_four_s = macro_f_string_static_t_initialize_1(F_status_network_version_four_s, 0, F_status_network_version_four_s_length); - const f_string_static_t f_status_network_version_four_not_s = macro_f_string_static_t_initialize_1(F_status_network_version_four_not_s, 0, F_status_network_version_four_not_s_length); - const f_string_static_t f_status_network_version_six_s = macro_f_string_static_t_initialize_1(F_status_network_version_six_s, 0, F_status_network_version_six_s_length); - const f_string_static_t f_status_network_version_six_not_s = macro_f_string_static_t_initialize_1(F_status_network_version_six_not_s, 0, F_status_network_version_six_not_s_length); - - // Number. - const f_string_static_t f_status_number_s = macro_f_string_static_t_initialize_1(F_status_number_s, 0, F_status_number_s_length); - const f_string_static_t f_status_number_decimal_s = macro_f_string_static_t_initialize_1(F_status_number_decimal_s, 0, F_status_number_decimal_s_length); - const f_string_static_t f_status_number_decimal_not_s = macro_f_string_static_t_initialize_1(F_status_number_decimal_not_s, 0, F_status_number_decimal_not_s_length); - const f_string_static_t f_status_number_divide_by_zero_s = macro_f_string_static_t_initialize_1(F_status_number_divide_by_zero_s, 0, F_status_number_divide_by_zero_s_length); - const f_string_static_t f_status_number_negative_s = macro_f_string_static_t_initialize_1(F_status_number_negative_s, 0, F_status_number_negative_s_length); - const f_string_static_t f_status_number_negative_not_s = macro_f_string_static_t_initialize_1(F_status_number_negative_not_s, 0, F_status_number_negative_not_s_length); - const f_string_static_t f_status_number_not_s = macro_f_string_static_t_initialize_1(F_status_number_not_s, 0, F_status_number_not_s_length); - const f_string_static_t f_status_number_overflow_s = macro_f_string_static_t_initialize_1(F_status_number_overflow_s, 0, F_status_number_overflow_s_length); - const f_string_static_t f_status_number_positive_s = macro_f_string_static_t_initialize_1(F_status_number_positive_s, 0, F_status_number_positive_s_length); - const f_string_static_t f_status_number_positive_not_s = macro_f_string_static_t_initialize_1(F_status_number_positive_not_s, 0, F_status_number_positive_not_s_length); - const f_string_static_t f_status_number_too_large_s = macro_f_string_static_t_initialize_1(F_status_number_too_large_s, 0, F_status_number_too_large_s_length); - const f_string_static_t f_status_number_too_small_s = macro_f_string_static_t_initialize_1(F_status_number_too_small_s, 0, F_status_number_too_small_s_length); - const f_string_static_t f_status_number_underflow_s = macro_f_string_static_t_initialize_1(F_status_number_underflow_s, 0, F_status_number_underflow_s_length); - const f_string_static_t f_status_number_whole_s = macro_f_string_static_t_initialize_1(F_status_number_whole_s, 0, F_status_number_whole_s_length); - const f_string_static_t f_status_number_whole_not_s = macro_f_string_static_t_initialize_1(F_status_number_whole_not_s, 0, F_status_number_whole_not_s_length); - const f_string_static_t f_status_number_zero_s = macro_f_string_static_t_initialize_1(F_status_number_zero_s, 0, F_status_number_zero_s_length); - const f_string_static_t f_status_number_zero_not_s = macro_f_string_static_t_initialize_1(F_status_number_zero_not_s, 0, F_status_number_zero_not_s_length); - - // Buffer. - const f_string_static_t f_status_buffer_s = macro_f_string_static_t_initialize_1(F_status_buffer_s, 0, F_status_buffer_s_length); - const f_string_static_t f_status_buffer_not_s = macro_f_string_static_t_initialize_1(F_status_buffer_not_s, 0, F_status_buffer_not_s_length); - const f_string_static_t f_status_buffer_overflow_s = macro_f_string_static_t_initialize_1(F_status_buffer_overflow_s, 0, F_status_buffer_overflow_s_length); - const f_string_static_t f_status_buffer_too_large_s = macro_f_string_static_t_initialize_1(F_status_buffer_too_large_s, 0, F_status_buffer_too_large_s_length); - const f_string_static_t f_status_buffer_too_small_s = macro_f_string_static_t_initialize_1(F_status_buffer_too_small_s, 0, F_status_buffer_too_small_s_length); - const f_string_static_t f_status_buffer_underflow_s = macro_f_string_static_t_initialize_1(F_status_buffer_underflow_s, 0, F_status_buffer_underflow_s_length); - const f_string_static_t f_status_complete_not_utf_s = macro_f_string_static_t_initialize_1(F_status_complete_not_utf_s, 0, F_status_complete_not_utf_s_length); - const f_string_static_t f_status_complete_not_utf_block_s = macro_f_string_static_t_initialize_1(F_status_complete_not_utf_block_s, 0, F_status_complete_not_utf_block_s_length); - const f_string_static_t f_status_complete_not_utf_eoa_s = macro_f_string_static_t_initialize_1(F_status_complete_not_utf_eoa_s, 0, F_status_complete_not_utf_eoa_s_length); - const f_string_static_t f_status_complete_not_utf_eof_s = macro_f_string_static_t_initialize_1(F_status_complete_not_utf_eof_s, 0, F_status_complete_not_utf_eof_s_length); - const f_string_static_t f_status_complete_not_utf_eol_s = macro_f_string_static_t_initialize_1(F_status_complete_not_utf_eol_s, 0, F_status_complete_not_utf_eol_s_length); - const f_string_static_t f_status_complete_not_utf_eos_s = macro_f_string_static_t_initialize_1(F_status_complete_not_utf_eos_s, 0, F_status_complete_not_utf_eos_s_length); - const f_string_static_t f_status_complete_not_utf_start_s = macro_f_string_static_t_initialize_1(F_status_complete_not_utf_start_s, 0, F_status_complete_not_utf_start_s_length); - const f_string_static_t f_status_complete_not_utf_stop_s = macro_f_string_static_t_initialize_1(F_status_complete_not_utf_stop_s, 0, F_status_complete_not_utf_stop_s_length); - const f_string_static_t f_status_okay_block_s = macro_f_string_static_t_initialize_1(F_status_okay_block_s, 0, F_status_okay_block_s_length); - const f_string_static_t f_status_okay_eoa_s = macro_f_string_static_t_initialize_1(F_status_okay_eoa_s, 0, F_status_okay_eoa_s_length); - const f_string_static_t f_status_okay_eof_s = macro_f_string_static_t_initialize_1(F_status_okay_eof_s, 0, F_status_okay_eof_s_length); - const f_string_static_t f_status_okay_eol_s = macro_f_string_static_t_initialize_1(F_status_okay_eol_s, 0, F_status_okay_eol_s_length); - const f_string_static_t f_status_okay_eos_s = macro_f_string_static_t_initialize_1(F_status_okay_eos_s, 0, F_status_okay_eos_s_length); - const f_string_static_t f_status_okay_start_s = macro_f_string_static_t_initialize_1(F_status_okay_start_s, 0, F_status_okay_start_s_length); - const f_string_static_t f_status_okay_stop_s = macro_f_string_static_t_initialize_1(F_status_okay_stop_s, 0, F_status_okay_stop_s_length); - const f_string_static_t f_status_data_s = macro_f_string_static_t_initialize_1(F_status_data_s, 0, F_status_data_s_length); - const f_string_static_t f_status_data_not_s = macro_f_string_static_t_initialize_1(F_status_data_not_s, 0, F_status_data_not_s_length); - const f_string_static_t f_status_data_not_block_s = macro_f_string_static_t_initialize_1(F_status_data_not_block_s, 0, F_status_data_not_block_s_length); - const f_string_static_t f_status_data_not_eoa_s = macro_f_string_static_t_initialize_1(F_status_data_not_eoa_s, 0, F_status_data_not_eoa_s_length); - const f_string_static_t f_status_data_not_eof_s = macro_f_string_static_t_initialize_1(F_status_data_not_eof_s, 0, F_status_data_not_eof_s_length); - const f_string_static_t f_status_data_not_eol_s = macro_f_string_static_t_initialize_1(F_status_data_not_eol_s, 0, F_status_data_not_eol_s_length); - const f_string_static_t f_status_data_not_eos_s = macro_f_string_static_t_initialize_1(F_status_data_not_eos_s, 0, F_status_data_not_eos_s_length); - const f_string_static_t f_status_data_not_start_s = macro_f_string_static_t_initialize_1(F_status_data_not_start_s, 0, F_status_data_not_start_s_length); - const f_string_static_t f_status_data_not_stop_s = macro_f_string_static_t_initialize_1(F_status_data_not_stop_s, 0, F_status_data_not_stop_s_length); - - // End. - const f_string_static_t f_status_end_s = macro_f_string_static_t_initialize_1(F_status_end_s, 0, F_status_end_s_length); - const f_string_static_t f_status_end_not_s = macro_f_string_static_t_initialize_1(F_status_end_not_s, 0, F_status_end_not_s_length); - const f_string_static_t f_status_end_not_block_s = macro_f_string_static_t_initialize_1(F_status_end_not_block_s, 0, F_status_end_not_block_s_length); - const f_string_static_t f_status_end_not_eoa_s = macro_f_string_static_t_initialize_1(F_status_end_not_eoa_s, 0, F_status_end_not_eoa_s_length); - const f_string_static_t f_status_end_not_eof_s = macro_f_string_static_t_initialize_1(F_status_end_not_eof_s, 0, F_status_end_not_eof_s_length); - const f_string_static_t f_status_end_not_eol_s = macro_f_string_static_t_initialize_1(F_status_end_not_eol_s, 0, F_status_end_not_eol_s_length); - const f_string_static_t f_status_end_not_eos_s = macro_f_string_static_t_initialize_1(F_status_end_not_eos_s, 0, F_status_end_not_eos_s_length); - const f_string_static_t f_status_end_not_start_s = macro_f_string_static_t_initialize_1(F_status_end_not_start_s, 0, F_status_end_not_start_s_length); - const f_string_static_t f_status_end_not_stop_s = macro_f_string_static_t_initialize_1(F_status_end_not_stop_s, 0, F_status_end_not_stop_s_length); - const f_string_static_t f_status_end_not_group_s = macro_f_string_static_t_initialize_1(F_status_end_not_group_s, 0, F_status_end_not_group_s_length); - const f_string_static_t f_status_end_not_group_block_s = macro_f_string_static_t_initialize_1(F_status_end_not_group_block_s, 0, F_status_end_not_group_block_s_length); - const f_string_static_t f_status_end_not_group_eoa_s = macro_f_string_static_t_initialize_1(F_status_end_not_group_eoa_s, 0, F_status_end_not_group_eoa_s_length); - const f_string_static_t f_status_end_not_group_eof_s = macro_f_string_static_t_initialize_1(F_status_end_not_group_eof_s, 0, F_status_end_not_group_eof_s_length); - const f_string_static_t f_status_end_not_group_eol_s = macro_f_string_static_t_initialize_1(F_status_end_not_group_eol_s, 0, F_status_end_not_group_eol_s_length); - const f_string_static_t f_status_end_not_group_eos_s = macro_f_string_static_t_initialize_1(F_status_end_not_group_eos_s, 0, F_status_end_not_group_eos_s_length); - const f_string_static_t f_status_end_not_group_start_s = macro_f_string_static_t_initialize_1(F_status_end_not_group_start_s, 0, F_status_end_not_group_start_s_length); - const f_string_static_t f_status_end_not_group_stop_s = macro_f_string_static_t_initialize_1(F_status_end_not_group_stop_s, 0, F_status_end_not_group_stop_s_length); - const f_string_static_t f_status_end_not_nest_s = macro_f_string_static_t_initialize_1(F_status_end_not_nest_s, 0, F_status_end_not_nest_s_length); - const f_string_static_t f_status_end_not_nest_block_s = macro_f_string_static_t_initialize_1(F_status_end_not_nest_block_s, 0, F_status_end_not_nest_block_s_length); - const f_string_static_t f_status_end_not_nest_eoa_s = macro_f_string_static_t_initialize_1(F_status_end_not_nest_eoa_s, 0, F_status_end_not_nest_eoa_s_length); - const f_string_static_t f_status_end_not_nest_eof_s = macro_f_string_static_t_initialize_1(F_status_end_not_nest_eof_s, 0, F_status_end_not_nest_eof_s_length); - const f_string_static_t f_status_end_not_nest_eol_s = macro_f_string_static_t_initialize_1(F_status_end_not_nest_eol_s, 0, F_status_end_not_nest_eol_s_length); - const f_string_static_t f_status_end_not_nest_eos_s = macro_f_string_static_t_initialize_1(F_status_end_not_nest_eos_s, 0, F_status_end_not_nest_eos_s_length); - const f_string_static_t f_status_end_not_nest_start_s = macro_f_string_static_t_initialize_1(F_status_end_not_nest_start_s, 0, F_status_end_not_nest_start_s_length); - const f_string_static_t f_status_end_not_nest_stop_s = macro_f_string_static_t_initialize_1(F_status_end_not_nest_stop_s, 0, F_status_end_not_nest_stop_s_length); - - // Process. - const f_string_static_t f_status_process_s = macro_f_string_static_t_initialize_1(F_status_process_s, 0, F_status_process_s_length); - const f_string_static_t f_status_process_not_s = macro_f_string_static_t_initialize_1(F_status_process_not_s, 0, F_status_process_not_s_length); - const f_string_static_t f_status_process_too_many_s = macro_f_string_static_t_initialize_1(F_status_process_too_many_s, 0, F_status_process_too_many_s_length); - - // Instance. - const f_string_static_t f_status_instance_s = macro_f_string_static_t_initialize_1(F_status_instance_s, 0, F_status_instance_s_length); - const f_string_static_t f_status_instance_not_s = macro_f_string_static_t_initialize_1(F_status_instance_not_s, 0, F_status_instance_not_s_length); - const f_string_static_t f_status_instance_too_many_s = macro_f_string_static_t_initialize_1(F_status_instance_too_many_s, 0, F_status_instance_too_many_s_length); - - // File. - const f_string_static_t f_status_file_s = macro_f_string_static_t_initialize_1(F_status_file_s, 0, F_status_file_s_length); - const f_string_static_t f_status_file_close_s = macro_f_string_static_t_initialize_1(F_status_file_close_s, 0, F_status_file_close_s_length); - const f_string_static_t f_status_file_closed_s = macro_f_string_static_t_initialize_1(F_status_file_closed_s, 0, F_status_file_closed_s_length); - const f_string_static_t f_status_file_descriptor_s = macro_f_string_static_t_initialize_1(F_status_file_descriptor_s, 0, F_status_file_descriptor_s_length); - const f_string_static_t f_status_file_descriptor_max_s = macro_f_string_static_t_initialize_1(F_status_file_descriptor_max_s, 0, F_status_file_descriptor_max_s_length); - const f_string_static_t f_status_file_descriptor_not_s = macro_f_string_static_t_initialize_1(F_status_file_descriptor_not_s, 0, F_status_file_descriptor_not_s_length); - const f_string_static_t f_status_file_empty_s = macro_f_string_static_t_initialize_1(F_status_file_empty_s, 0, F_status_file_empty_s_length); - const f_string_static_t f_status_file_empty_not_s = macro_f_string_static_t_initialize_1(F_status_file_empty_not_s, 0, F_status_file_empty_not_s_length); - const f_string_static_t f_status_file_flush_s = macro_f_string_static_t_initialize_1(F_status_file_flush_s, 0, F_status_file_flush_s_length); - const f_string_static_t f_status_file_found_s = macro_f_string_static_t_initialize_1(F_status_file_found_s, 0, F_status_file_found_s_length); - const f_string_static_t f_status_file_found_not_s = macro_f_string_static_t_initialize_1(F_status_file_found_not_s, 0, F_status_file_found_not_s_length); - const f_string_static_t f_status_file_not_s = macro_f_string_static_t_initialize_1(F_status_file_not_s, 0, F_status_file_not_s_length); - const f_string_static_t f_status_file_open_s = macro_f_string_static_t_initialize_1(F_status_file_open_s, 0, F_status_file_open_s_length); - const f_string_static_t f_status_file_open_max_s = macro_f_string_static_t_initialize_1(F_status_file_open_max_s, 0, F_status_file_open_max_s_length); - const f_string_static_t f_status_file_opened_s = macro_f_string_static_t_initialize_1(F_status_file_opened_s, 0, F_status_file_opened_s_length); - const f_string_static_t f_status_file_overflow_s = macro_f_string_static_t_initialize_1(F_status_file_overflow_s, 0, F_status_file_overflow_s_length); - const f_string_static_t f_status_file_purge_s = macro_f_string_static_t_initialize_1(F_status_file_purge_s, 0, F_status_file_purge_s_length); - const f_string_static_t f_status_file_read_s = macro_f_string_static_t_initialize_1(F_status_file_read_s, 0, F_status_file_read_s_length); - const f_string_static_t f_status_file_reallocation_s = macro_f_string_static_t_initialize_1(F_status_file_reallocation_s, 0, F_status_file_reallocation_s_length); - const f_string_static_t f_status_file_seek_s = macro_f_string_static_t_initialize_1(F_status_file_seek_s, 0, F_status_file_seek_s_length); - const f_string_static_t f_status_file_stat_s = macro_f_string_static_t_initialize_1(F_status_file_stat_s, 0, F_status_file_stat_s_length); - const f_string_static_t f_status_file_synchronize_s = macro_f_string_static_t_initialize_1(F_status_file_synchronize_s, 0, F_status_file_synchronize_s_length); - const f_string_static_t f_status_file_type_block_s = macro_f_string_static_t_initialize_1(F_status_file_type_block_s, 0, F_status_file_type_block_s_length); - const f_string_static_t f_status_file_type_character_s = macro_f_string_static_t_initialize_1(F_status_file_type_character_s, 0, F_status_file_type_character_s_length); - const f_string_static_t f_status_file_type_directory_s = macro_f_string_static_t_initialize_1(F_status_file_type_directory_s, 0, F_status_file_type_directory_s_length); - const f_string_static_t f_status_file_type_fifo_s = macro_f_string_static_t_initialize_1(F_status_file_type_fifo_s, 0, F_status_file_type_fifo_s_length); - const f_string_static_t f_status_file_type_link_s = macro_f_string_static_t_initialize_1(F_status_file_type_link_s, 0, F_status_file_type_link_s_length); - const f_string_static_t f_status_file_type_not_block_s = macro_f_string_static_t_initialize_1(F_status_file_type_not_block_s, 0, F_status_file_type_not_block_s_length); - const f_string_static_t f_status_file_type_not_character_s = macro_f_string_static_t_initialize_1(F_status_file_type_not_character_s, 0, F_status_file_type_not_character_s_length); - const f_string_static_t f_status_file_type_not_directory_s = macro_f_string_static_t_initialize_1(F_status_file_type_not_directory_s, 0, F_status_file_type_not_directory_s_length); - const f_string_static_t f_status_file_type_not_fifo_s = macro_f_string_static_t_initialize_1(F_status_file_type_not_fifo_s, 0, F_status_file_type_not_fifo_s_length); - const f_string_static_t f_status_file_type_not_link_s = macro_f_string_static_t_initialize_1(F_status_file_type_not_link_s, 0, F_status_file_type_not_link_s_length); - const f_string_static_t f_status_file_type_not_pipe_s = macro_f_string_static_t_initialize_1(F_status_file_type_not_pipe_s, 0, F_status_file_type_not_pipe_s_length); - const f_string_static_t f_status_file_type_not_regular_s = macro_f_string_static_t_initialize_1(F_status_file_type_not_regular_s, 0, F_status_file_type_not_regular_s_length); - const f_string_static_t f_status_file_type_not_socket_s = macro_f_string_static_t_initialize_1(F_status_file_type_not_socket_s, 0, F_status_file_type_not_socket_s_length); - const f_string_static_t f_status_file_type_not_unknown_s = macro_f_string_static_t_initialize_1(F_status_file_type_not_unknown_s, 0, F_status_file_type_not_unknown_s_length); - const f_string_static_t f_status_file_type_pipe_s = macro_f_string_static_t_initialize_1(F_status_file_type_pipe_s, 0, F_status_file_type_pipe_s_length); - const f_string_static_t f_status_file_type_regular_s = macro_f_string_static_t_initialize_1(F_status_file_type_regular_s, 0, F_status_file_type_regular_s_length); - const f_string_static_t f_status_file_type_socket_s = macro_f_string_static_t_initialize_1(F_status_file_type_socket_s, 0, F_status_file_type_socket_s_length); - const f_string_static_t f_status_file_type_unknown_s = macro_f_string_static_t_initialize_1(F_status_file_type_unknown_s, 0, F_status_file_type_unknown_s_length); - const f_string_static_t f_status_file_underflow_s = macro_f_string_static_t_initialize_1(F_status_file_underflow_s, 0, F_status_file_underflow_s_length); - const f_string_static_t f_status_file_utf_s = macro_f_string_static_t_initialize_1(F_status_file_utf_s, 0, F_status_file_utf_s_length); - const f_string_static_t f_status_file_utf_not_s = macro_f_string_static_t_initialize_1(F_status_file_utf_not_s, 0, F_status_file_utf_not_s_length); - const f_string_static_t f_status_file_write_s = macro_f_string_static_t_initialize_1(F_status_file_write_s, 0, F_status_file_write_s_length); - - // Filesystem. - const f_string_static_t f_status_filesystem_s = macro_f_string_static_t_initialize_1(F_status_filesystem_s, 0, F_status_filesystem_s_length); - const f_string_static_t f_status_filesystem_not_s = macro_f_string_static_t_initialize_1(F_status_filesystem_not_s, 0, F_status_filesystem_not_s_length); - const f_string_static_t f_status_filesystem_quota_block_s = macro_f_string_static_t_initialize_1(F_status_filesystem_quota_block_s, 0, F_status_filesystem_quota_block_s_length); - const f_string_static_t f_status_filesystem_quota_reached_s = macro_f_string_static_t_initialize_1(F_status_filesystem_quota_reached_s, 0, F_status_filesystem_quota_reached_s_length); + // Filesystem. + const f_string_static_t f_status_filesystem_s = macro_f_string_static_t_initialize_1(F_status_filesystem_s, 0, F_status_filesystem_s_length); + const f_string_static_t f_status_filesystem_not_s = macro_f_string_static_t_initialize_1(F_status_filesystem_not_s, 0, F_status_filesystem_not_s_length); + const f_string_static_t f_status_filesystem_quota_block_s = macro_f_string_static_t_initialize_1(F_status_filesystem_quota_block_s, 0, F_status_filesystem_quota_block_s_length); + const f_string_static_t f_status_filesystem_quota_reached_s = macro_f_string_static_t_initialize_1(F_status_filesystem_quota_reached_s, 0, F_status_filesystem_quota_reached_s_length); // Directory. const f_string_static_t f_status_directory_s = macro_f_string_static_t_initialize_1(F_status_directory_s, 0, F_status_directory_s_length); @@ -1156,6 +1140,26 @@ extern "C" { break; + case F_array: + *name = f_status_array_s; + + break; + + case F_array_not: + *name = f_status_array_not_s; + + break; + + case F_array_too_large: + *name = f_status_array_too_large_s; + + break; + + case F_array_too_small: + *name = f_status_array_too_small_s; + + break; + case F_ascii: *name = f_status_ascii_s; @@ -1176,6 +1180,51 @@ extern "C" { break; + case F_available: + *name = f_status_available_s; + + break; + + case F_available_not: + *name = f_status_available_not_s; + + break; + + case F_available_not_address: + *name = f_status_available_not_address_s; + + break; + + case F_available_not_buffer: + *name = f_status_available_not_buffer_s; + + break; + + case F_available_not_device: + *name = f_status_available_not_device_s; + + break; + + case F_available_not_pipe: + *name = f_status_available_not_pipe_s; + + break; + + case F_available_not_port: + *name = f_status_available_not_port_s; + + break; + + case F_available_not_process: + *name = f_status_available_not_process_s; + + break; + + case F_available_not_socket: + *name = f_status_available_not_socket_s; + + break; + case F_base: *name = f_status_base_s; @@ -1206,16 +1255,6 @@ extern "C" { break; - case F_break: - *name = f_status_break_s; - - break; - - case F_break_not: - *name = f_status_break_not_s; - - break; - case F_body: *name = f_status_body_s; @@ -1246,77 +1285,202 @@ extern "C" { break; - case F_call: - *name = f_status_call_s; + case F_break: + *name = f_status_break_s; break; - case F_call_not: - *name = f_status_call_not_s; + case F_break_not: + *name = f_status_break_not_s; break; - case F_capability: - *name = f_status_capability_s; + case F_buffer: + *name = f_status_buffer_s; break; - case F_capability_not: - *name = f_status_capability_not_s; + case F_buffer_not: + *name = f_status_buffer_not_s; break; - case F_character: - *name = f_status_character_s; + case F_buffer_overflow: + *name = f_status_buffer_overflow_s; break; - case F_character_not: - *name = f_status_character_not_s; + case F_buffer_too_large: + *name = f_status_buffer_too_large_s; break; - case F_child: - *name = f_status_child_s; + case F_buffer_too_small: + *name = f_status_buffer_too_small_s; break; - case F_child_not: - *name = f_status_child_not_s; + case F_buffer_underflow: + *name = f_status_buffer_underflow_s; break; - case F_complete: - *name = f_status_complete_s; + case F_busy: + *name = f_status_busy_s; break; - case F_complete_not: - *name = f_status_complete_not_s; + case F_busy_address: + *name = f_status_busy_address_s; break; - case F_connect: - *name = f_status_connect_s; + case F_busy_buffer: + *name = f_status_busy_buffer_s; break; - case F_connect_not: - *name = f_status_connect_not_s; + case F_busy_device: + *name = f_status_busy_device_s; break; - case F_connect_refuse: - *name = f_status_connect_refuse_s; + case F_busy_not: + *name = f_status_busy_not_s; break; - case F_connect_reset: - *name = f_status_connect_reset_s; + case F_busy_pipe: + *name = f_status_busy_pipe_s; break; - case F_content: + case F_busy_port: + *name = f_status_busy_port_s; + + break; + + case F_busy_process: + *name = f_status_busy_process_s; + + break; + + case F_busy_socket: + *name = f_status_busy_socket_s; + + break; + + case F_call: + *name = f_status_call_s; + + break; + + case F_call_not: + *name = f_status_call_not_s; + + break; + + case F_capability: + *name = f_status_capability_s; + + break; + + case F_capability_not: + *name = f_status_capability_not_s; + + break; + + case F_character: + *name = f_status_character_s; + + break; + + case F_character_not: + *name = f_status_character_not_s; + + break; + + case F_child: + *name = f_status_child_s; + + break; + + case F_child_not: + *name = f_status_child_not_s; + + break; + + case F_complete: + *name = f_status_complete_s; + + break; + + case F_complete_not: + *name = f_status_complete_not_s; + + break; + + case F_complete_not_utf: + *name = f_status_complete_not_utf_s; + + break; + + case F_complete_not_utf_block: + *name = f_status_complete_not_utf_block_s; + + break; + + case F_complete_not_utf_eoa: + *name = f_status_complete_not_utf_eoa_s; + + break; + + case F_complete_not_utf_eof: + *name = f_status_complete_not_utf_eof_s; + + break; + + case F_complete_not_utf_eol: + *name = f_status_complete_not_utf_eol_s; + + break; + + case F_complete_not_utf_eos: + *name = f_status_complete_not_utf_eos_s; + + break; + + case F_complete_not_utf_start: + *name = f_status_complete_not_utf_start_s; + + break; + + case F_complete_not_utf_stop: + *name = f_status_complete_not_utf_stop_s; + + break; + + case F_connect: + *name = f_status_connect_s; + + break; + + case F_connect_not: + *name = f_status_connect_not_s; + + break; + + case F_connect_refuse: + *name = f_status_connect_refuse_s; + + break; + + case F_connect_reset: + *name = f_status_connect_reset_s; + + break; + + case F_content: *name = f_status_content_s; break; @@ -1376,6 +1540,51 @@ extern "C" { break; + case F_data: + *name = f_status_data_s; + + break; + + case F_data_not: + *name = f_status_data_not_s; + + break; + + case F_data_not_block: + *name = f_status_data_not_block_s; + + break; + + case F_data_not_eoa: + *name = f_status_data_not_eoa_s; + + break; + + case F_data_not_eof: + *name = f_status_data_not_eof_s; + + break; + + case F_data_not_eol: + *name = f_status_data_not_eol_s; + + break; + + case F_data_not_eos: + *name = f_status_data_not_eos_s; + + break; + + case F_data_not_start: + *name = f_status_data_not_start_s; + + break; + + case F_data_not_stop: + *name = f_status_data_not_stop_s; + + break; + case F_dead: *name = f_status_dead_s; @@ -1396,6 +1605,16 @@ extern "C" { break; + case F_debug: + *name = f_status_debug_s; + + break; + + case F_debug_not: + *name = f_status_debug_not_s; + + break; + case F_descriptor: *name = f_status_descriptor_s; @@ -1516,99 +1735,234 @@ extern "C" { break; - case F_endian: - *name = f_status_endian_s; + case F_end: + *name = f_status_end_s; break; - case F_endian_big: - *name = f_status_endian_big_s; + case F_end_not: + *name = f_status_end_not_s; break; - case F_endian_little: - *name = f_status_endian_little_s; + case F_end_not_block: + *name = f_status_end_not_block_s; break; - case F_endian_not: - *name = f_status_endian_not_s; + case F_end_not_eoa: + *name = f_status_end_not_eoa_s; break; - case F_enter: - *name = f_status_enter_s; + case F_end_not_eof: + *name = f_status_end_not_eof_s; break; - case F_enter_not: - *name = f_status_enter_not_s; + case F_end_not_eol: + *name = f_status_end_not_eol_s; break; - case F_eoa: - *name = f_status_eoa_s; + case F_end_not_eos: + *name = f_status_end_not_eos_s; break; - case F_eoa_not: - *name = f_status_eoa_not_s; + case F_end_not_group: + *name = f_status_end_not_group_s; break; - case F_eof: - *name = f_status_eof_s; + case F_end_not_group_block: + *name = f_status_end_not_group_block_s; break; - case F_eof_not: - *name = f_status_eof_not_s; + case F_end_not_group_eoa: + *name = f_status_end_not_group_eoa_s; break; - case F_eol: - *name = f_status_eol_s; + case F_end_not_group_eof: + *name = f_status_end_not_group_eof_s; break; - case F_eol_not: - *name = f_status_eol_not_s; + case F_end_not_group_eol: + *name = f_status_end_not_group_eol_s; break; - case F_eos: - *name = f_status_eos_s; + case F_end_not_group_eos: + *name = f_status_end_not_group_eos_s; break; - case F_eos_not: - *name = f_status_eos_not_s; + case F_end_not_group_start: + *name = f_status_end_not_group_start_s; break; - case F_execute: - *name = f_status_execute_s; + case F_end_not_group_stop: + *name = f_status_end_not_group_stop_s; break; - case F_execute_not: - *name = f_status_execute_not_s; + case F_end_not_nest: + *name = f_status_end_not_nest_s; break; - case F_exist: - *name = f_status_exist_s; + case F_end_not_nest_block: + *name = f_status_end_not_nest_block_s; break; - case F_exist_not: - *name = f_status_exist_not_s; + case F_end_not_nest_eoa: + *name = f_status_end_not_nest_eoa_s; break; - case F_exit: - *name = f_status_exit_s; - + case F_end_not_nest_eof: + *name = f_status_end_not_nest_eof_s; + + break; + + case F_end_not_nest_eol: + *name = f_status_end_not_nest_eol_s; + + break; + + case F_end_not_nest_eos: + *name = f_status_end_not_nest_eos_s; + + break; + + case F_end_not_nest_start: + *name = f_status_end_not_nest_start_s; + + break; + + case F_end_not_nest_stop: + *name = f_status_end_not_nest_stop_s; + + break; + + case F_end_not_start: + *name = f_status_end_not_start_s; + + break; + + case F_end_not_stop: + *name = f_status_end_not_stop_s; + + break; + + case F_endian: + *name = f_status_endian_s; + + break; + + case F_endian_big: + *name = f_status_endian_big_s; + + break; + + case F_endian_little: + *name = f_status_endian_little_s; + + break; + + case F_endian_not: + *name = f_status_endian_not_s; + + break; + + case F_enter: + *name = f_status_enter_s; + + break; + + case F_enter_not: + *name = f_status_enter_not_s; + + break; + + case F_eoa: + *name = f_status_eoa_s; + + break; + + case F_eoa_not: + *name = f_status_eoa_not_s; + + break; + + case F_eof: + *name = f_status_eof_s; + + break; + + case F_eof_not: + *name = f_status_eof_not_s; + + break; + + case F_eol: + *name = f_status_eol_s; + + break; + + case F_eol_not: + *name = f_status_eol_not_s; + + break; + + case F_eos: + *name = f_status_eos_s; + + break; + + case F_eos_not: + *name = f_status_eos_not_s; + + break; + + case F_error: + *name = f_status_error_s; + + break; + + case F_error_not: + *name = f_status_error_not_s; + + break; + + case F_execute: + *name = f_status_execute_s; + + break; + + case F_execute_not: + *name = f_status_execute_not_s; + + break; + + case F_exist: + *name = f_status_exist_s; + + break; + + case F_exist_not: + *name = f_status_exist_not_s; + + break; + + case F_exit: + *name = f_status_exit_s; + break; case F_exit_not: @@ -1646,6 +2000,16 @@ extern "C" { break; + case F_fine: + *name = f_status_fine_s; + + break; + + case F_fine_not: + *name = f_status_fine_not_s; + + break; + case F_first: *name = f_status_first_s; @@ -2031,139 +2395,355 @@ extern "C" { break; - case F_next: - *name = f_status_next_s; + // Network. + case F_network: + *name = f_status_network_s; break; - case F_next_not: - *name = f_status_next_not_s; + case F_network_busy: + *name = f_status_network_busy_s; break; - case F_nice: - *name = f_status_nice_s; + case F_network_busy_not: + *name = f_status_network_busy_not_s; break; - case F_nice_not: - *name = f_status_nice_not_s; + case F_network_client: + *name = f_status_network_client_s; break; - case F_no: - *name = f_status_no_s; + case F_network_client_not: + *name = f_status_network_client_not_s; break; - case F_no_not: - *name = f_status_no_not_s; + case F_network_device: + *name = f_status_network_device_s; break; - case F_none: - *name = f_status_none_s; + case F_network_device_not: + *name = f_status_network_device_not_s; break; - case F_none_not: - *name = f_status_none_not_s; + case F_network_found: + *name = f_status_network_found_s; break; - case F_object: - *name = f_status_object_s; + case F_network_found_not: + *name = f_status_network_found_not_s; break; - case F_object_not: - *name = f_status_object_not_s; + case F_network_lost: + *name = f_status_network_lost_s; break; - case F_once: - *name = f_status_once_s; + case F_network_lost_not: + *name = f_status_network_lost_not_s; break; - case F_once_not: - *name = f_status_once_not_s; + case F_network_not: + *name = f_status_network_not_s; break; - case F_option: - *name = f_status_option_s; + case F_network_reach: + *name = f_status_network_reach_s; break; - case F_option_not: - *name = f_status_option_not_s; + case F_network_reach_client: + *name = f_status_network_reach_client_s; break; - case F_output: - *name = f_status_output_s; + case F_network_reach_client_not: + *name = f_status_network_reach_client_not_s; break; - case F_output_not: - *name = f_status_output_not_s; + case F_network_reach_not: + *name = f_status_network_reach_not_s; break; - case F_packet: - *name = f_status_packet_s; + case F_network_reach_server: + *name = f_status_network_reach_server_s; break; - case F_packet_not: - *name = f_status_packet_not_s; + case F_network_reach_server_not: + *name = f_status_network_reach_server_not_s; break; - case F_packet_too_large: - *name = f_status_packet_too_large_s; + case F_network_server: + *name = f_status_network_server_s; break; - case F_packet_too_large_not: - *name = f_status_packet_too_large_not_s; + case F_network_server_not: + *name = f_status_network_server_not_s; break; - case F_packet_too_small: - *name = f_status_packet_too_small_s; + case F_network_time: + *name = f_status_network_time_s; break; - case F_packet_too_small_not: - *name = f_status_packet_too_small_not_s; + case F_network_time_not: + *name = f_status_network_time_not_s; break; - case F_parameter: - *name = f_status_parameter_s; + case F_network_version_four: + *name = f_status_network_version_four_s; break; - case F_parameter_not: - *name = f_status_parameter_not_s; + case F_network_version_four_not: + *name = f_status_network_version_four_not_s; break; - case F_parent: - *name = f_status_parent_s; + case F_network_version_six: + *name = f_status_network_version_six_s; break; - case F_parent_not: - *name = f_status_parent_not_s; + case F_network_version_six_not: + *name = f_status_network_version_six_not_s; break; - case F_partial: - *name = f_status_partial_s; - + case F_next: + *name = f_status_next_s; + + break; + + case F_next_not: + *name = f_status_next_not_s; + + break; + + case F_nice: + *name = f_status_nice_s; + + break; + + case F_nice_not: + *name = f_status_nice_not_s; + + break; + + case F_no: + *name = f_status_no_s; + + break; + + case F_no_not: + *name = f_status_no_not_s; + + break; + + case F_none: + *name = f_status_none_s; + + break; + + case F_none_not: + *name = f_status_none_not_s; + + break; + + case F_number: + *name = f_status_number_s; + + break; + + case F_number_decimal: + *name = f_status_number_decimal_s; + + break; + + case F_number_decimal_not: + *name = f_status_number_decimal_not_s; + + break; + + case F_number_divide_by_zero: + *name = f_status_number_divide_by_zero_s; + + break; + + case F_number_negative: + *name = f_status_number_negative_s; + + break; + + case F_number_negative_not: + *name = f_status_number_negative_not_s; + + break; + + case F_number_not: + *name = f_status_number_not_s; + + break; + + case F_number_overflow: + *name = f_status_number_overflow_s; + + break; + + case F_number_positive: + *name = f_status_number_positive_s; + + break; + + case F_number_positive_not: + *name = f_status_number_positive_not_s; + + break; + + case F_number_too_large: + *name = f_status_number_too_large_s; + + break; + + case F_number_too_small: + *name = f_status_number_too_small_s; + + break; + + case F_number_underflow: + *name = f_status_number_underflow_s; + + break; + + case F_number_whole: + *name = f_status_number_whole_s; + + break; + + case F_number_whole_not: + *name = f_status_number_whole_not_s; + + break; + + case F_number_zero: + *name = f_status_number_zero_s; + + break; + + case F_number_zero_not: + *name = f_status_number_zero_not_s; + + break; + + case F_object: + *name = f_status_object_s; + + break; + + case F_object_not: + *name = f_status_object_not_s; + + break; + + case F_once: + *name = f_status_once_s; + + break; + + case F_once_not: + *name = f_status_once_not_s; + + break; + + case F_option: + *name = f_status_option_s; + + break; + + case F_option_not: + *name = f_status_option_not_s; + + break; + + case F_output: + *name = f_status_output_s; + + break; + + case F_output_not: + *name = f_status_output_not_s; + + break; + + case F_packet: + *name = f_status_packet_s; + + break; + + case F_packet_not: + *name = f_status_packet_not_s; + + break; + + case F_packet_too_large: + *name = f_status_packet_too_large_s; + + break; + + case F_packet_too_large_not: + *name = f_status_packet_too_large_not_s; + + break; + + case F_packet_too_small: + *name = f_status_packet_too_small_s; + + break; + + case F_packet_too_small_not: + *name = f_status_packet_too_small_not_s; + + break; + + case F_parameter: + *name = f_status_parameter_s; + + break; + + case F_parameter_not: + *name = f_status_parameter_not_s; + + break; + + case F_parent: + *name = f_status_parent_s; + + break; + + case F_parent_not: + *name = f_status_parent_not_s; + + break; + + case F_partial: + *name = f_status_partial_s; + break; case F_partial_not: @@ -2811,6 +3391,16 @@ extern "C" { break; + case F_warning: + *name = f_status_warning_s; + + break; + + case F_warning_not: + *name = f_status_warning_not_s; + + break; + case F_wish: *name = f_status_wish_s; @@ -2856,619 +3446,6 @@ extern "C" { break; - // Return. - case F_debug: - *name = f_status_debug_s; - - break; - - case F_debug_not: - *name = f_status_debug_not_s; - - break; - - case F_error: - *name = f_status_error_s; - - break; - - case F_error_not: - *name = f_status_error_not_s; - - break; - - case F_fine: - *name = f_status_fine_s; - - break; - - case F_fine_not: - *name = f_status_fine_not_s; - - break; - - case F_warning: - *name = f_status_warning_s; - - break; - - case F_warning_not: - *name = f_status_warning_not_s; - - break; - - // Array. - case F_array: - *name = f_status_array_s; - - break; - - case F_array_not: - *name = f_status_array_not_s; - - break; - - case F_array_too_large: - *name = f_status_array_too_large_s; - - break; - - case F_array_too_small: - *name = f_status_array_too_small_s; - - break; - - // Available. - case F_available: - *name = f_status_available_s; - - break; - - case F_available_not: - *name = f_status_available_not_s; - - break; - - case F_available_not_address: - *name = f_status_available_not_address_s; - - break; - - case F_available_not_buffer: - *name = f_status_available_not_buffer_s; - - break; - - case F_available_not_device: - *name = f_status_available_not_device_s; - - break; - - case F_available_not_pipe: - *name = f_status_available_not_pipe_s; - - break; - - case F_available_not_port: - *name = f_status_available_not_port_s; - - break; - - case F_available_not_process: - *name = f_status_available_not_process_s; - - break; - - case F_available_not_socket: - *name = f_status_available_not_socket_s; - - break; - - // Busy. - case F_busy: - *name = f_status_busy_s; - - break; - - case F_busy_address: - *name = f_status_busy_address_s; - - break; - - case F_busy_buffer: - *name = f_status_busy_buffer_s; - - break; - - case F_busy_device: - *name = f_status_busy_device_s; - - break; - - case F_busy_not: - *name = f_status_busy_not_s; - - break; - - case F_busy_pipe: - *name = f_status_busy_pipe_s; - - break; - - case F_busy_port: - *name = f_status_busy_port_s; - - break; - - case F_busy_process: - *name = f_status_busy_process_s; - - break; - - case F_busy_socket: - *name = f_status_busy_socket_s; - - break; - - // Network. - case F_network: - *name = f_status_network_s; - - break; - - case F_network_busy: - *name = f_status_network_busy_s; - - break; - - case F_network_busy_not: - *name = f_status_network_busy_not_s; - - break; - - case F_network_client: - *name = f_status_network_client_s; - - break; - - case F_network_client_not: - *name = f_status_network_client_not_s; - - break; - - case F_network_device: - *name = f_status_network_device_s; - - break; - - case F_network_device_not: - *name = f_status_network_device_not_s; - - break; - - case F_network_found: - *name = f_status_network_found_s; - - break; - - case F_network_found_not: - *name = f_status_network_found_not_s; - - break; - - case F_network_lost: - *name = f_status_network_lost_s; - - break; - - case F_network_lost_not: - *name = f_status_network_lost_not_s; - - break; - - case F_network_not: - *name = f_status_network_not_s; - - break; - - case F_network_reach: - *name = f_status_network_reach_s; - - break; - - case F_network_reach_client: - *name = f_status_network_reach_client_s; - - break; - - case F_network_reach_client_not: - *name = f_status_network_reach_client_not_s; - - break; - - case F_network_reach_not: - *name = f_status_network_reach_not_s; - - break; - - case F_network_reach_server: - *name = f_status_network_reach_server_s; - - break; - - case F_network_reach_server_not: - *name = f_status_network_reach_server_not_s; - - break; - - case F_network_server: - *name = f_status_network_server_s; - - break; - - case F_network_server_not: - *name = f_status_network_server_not_s; - - break; - - case F_network_time: - *name = f_status_network_time_s; - - break; - - case F_network_time_not: - *name = f_status_network_time_not_s; - - break; - - case F_network_version_four: - *name = f_status_network_version_four_s; - - break; - - case F_network_version_four_not: - *name = f_status_network_version_four_not_s; - - break; - - case F_network_version_six: - *name = f_status_network_version_six_s; - - break; - - case F_network_version_six_not: - *name = f_status_network_version_six_not_s; - - break; - - // Number. - case F_number: - *name = f_status_number_s; - - break; - - case F_number_decimal: - *name = f_status_number_decimal_s; - - break; - - case F_number_decimal_not: - *name = f_status_number_decimal_not_s; - - break; - - case F_number_divide_by_zero: - *name = f_status_number_divide_by_zero_s; - - break; - - case F_number_negative: - *name = f_status_number_negative_s; - - break; - - case F_number_negative_not: - *name = f_status_number_negative_not_s; - - break; - - case F_number_not: - *name = f_status_number_not_s; - - break; - - case F_number_overflow: - *name = f_status_number_overflow_s; - - break; - - case F_number_positive: - *name = f_status_number_positive_s; - - break; - - case F_number_positive_not: - *name = f_status_number_positive_not_s; - - break; - - case F_number_too_large: - *name = f_status_number_too_large_s; - - break; - - case F_number_too_small: - *name = f_status_number_too_small_s; - - break; - - case F_number_underflow: - *name = f_status_number_underflow_s; - - break; - - case F_number_whole: - *name = f_status_number_whole_s; - - break; - - case F_number_whole_not: - *name = f_status_number_whole_not_s; - - break; - - case F_number_zero: - *name = f_status_number_zero_s; - - break; - - case F_number_zero_not: - *name = f_status_number_zero_not_s; - - break; - - // Buffer. - case F_buffer: - *name = f_status_buffer_s; - - break; - - case F_buffer_not: - *name = f_status_buffer_not_s; - - break; - - case F_buffer_overflow: - *name = f_status_buffer_overflow_s; - - break; - - case F_buffer_too_large: - *name = f_status_buffer_too_large_s; - - break; - - case F_buffer_too_small: - *name = f_status_buffer_too_small_s; - - break; - - case F_buffer_underflow: - *name = f_status_buffer_underflow_s; - - break; - - case F_complete_not_utf: - *name = f_status_complete_not_utf_s; - - break; - - case F_complete_not_utf_block: - *name = f_status_complete_not_utf_block_s; - - break; - - case F_complete_not_utf_eoa: - *name = f_status_complete_not_utf_eoa_s; - - break; - - case F_complete_not_utf_eof: - *name = f_status_complete_not_utf_eof_s; - - break; - - case F_complete_not_utf_eol: - *name = f_status_complete_not_utf_eol_s; - - break; - - case F_complete_not_utf_eos: - *name = f_status_complete_not_utf_eos_s; - - break; - - case F_complete_not_utf_start: - *name = f_status_complete_not_utf_start_s; - - break; - - case F_complete_not_utf_stop: - *name = f_status_complete_not_utf_stop_s; - - break; - - case F_data: - *name = f_status_data_s; - - break; - - case F_data_not: - *name = f_status_data_not_s; - - break; - - case F_data_not_block: - *name = f_status_data_not_block_s; - - break; - - case F_data_not_eoa: - *name = f_status_data_not_eoa_s; - - break; - - case F_data_not_eof: - *name = f_status_data_not_eof_s; - - break; - - case F_data_not_eol: - *name = f_status_data_not_eol_s; - - break; - - case F_data_not_eos: - *name = f_status_data_not_eos_s; - - break; - - case F_data_not_start: - *name = f_status_data_not_start_s; - - break; - - case F_data_not_stop: - *name = f_status_data_not_stop_s; - - break; - - // End. - case F_end: - *name = f_status_end_s; - - break; - - case F_end_not: - *name = f_status_end_not_s; - - break; - - case F_end_not_block: - *name = f_status_end_not_block_s; - - break; - - case F_end_not_eoa: - *name = f_status_end_not_eoa_s; - - break; - - case F_end_not_eof: - *name = f_status_end_not_eof_s; - - break; - - case F_end_not_eol: - *name = f_status_end_not_eol_s; - - break; - - case F_end_not_eos: - *name = f_status_end_not_eos_s; - - break; - - case F_end_not_group: - *name = f_status_end_not_group_s; - - break; - - case F_end_not_group_block: - *name = f_status_end_not_group_block_s; - - break; - - case F_end_not_group_eoa: - *name = f_status_end_not_group_eoa_s; - - break; - - case F_end_not_group_eof: - *name = f_status_end_not_group_eof_s; - - break; - - case F_end_not_group_eol: - *name = f_status_end_not_group_eol_s; - - break; - - case F_end_not_group_eos: - *name = f_status_end_not_group_eos_s; - - break; - - case F_end_not_group_start: - *name = f_status_end_not_group_start_s; - - break; - - case F_end_not_group_stop: - *name = f_status_end_not_group_stop_s; - - break; - - case F_end_not_nest: - *name = f_status_end_not_nest_s; - - break; - - case F_end_not_nest_block: - *name = f_status_end_not_nest_block_s; - - break; - - case F_end_not_nest_eoa: - *name = f_status_end_not_nest_eoa_s; - - break; - - case F_end_not_nest_eof: - *name = f_status_end_not_nest_eof_s; - - break; - - case F_end_not_nest_eol: - *name = f_status_end_not_nest_eol_s; - - break; - - case F_end_not_nest_eos: - *name = f_status_end_not_nest_eos_s; - - break; - - case F_end_not_nest_start: - *name = f_status_end_not_nest_start_s; - - break; - - case F_end_not_nest_stop: - *name = f_status_end_not_nest_stop_s; - - break; - - case F_end_not_start: - *name = f_status_end_not_start_s; - - break; - - case F_end_not_stop: - *name = f_status_end_not_stop_s; - - break; - // Process. case F_process: *name = f_status_process_s; diff --git a/level_0/f_status_string/c/status_string.h b/level_0/f_status_string/c/status_string.h index 94f54d0..85e73ef 100644 --- a/level_0/f_status_string/c/status_string.h +++ b/level_0/f_status_string/c/status_string.h @@ -230,729 +230,971 @@ extern "C" { extern const f_string_static_t f_status_signal_reserved_64_s; // Basic. - #define F_status_okay_s "F_okay" - #define F_status_okay_block_s "F_okay_block" - #define F_status_okay_eoa_s "F_okay_eoa" - #define F_status_okay_eof_s "F_okay_eof" - #define F_status_okay_eol_s "F_okay_eol" - #define F_status_okay_eos_s "F_okay_eos" - #define F_status_okay_not_s "F_okay_not" - #define F_status_okay_start_s "F_okay_start" - #define F_status_okay_stop_s "F_okay_stop" - #define F_status_abort_s "F_abort" - #define F_status_abort_not_s "F_abort_not" - #define F_status_absolute_s "F_absolute" - #define F_status_absolute_not_s "F_absolute_not" - #define F_status_add_s "F_add" - #define F_status_add_not_s "F_add_not" - #define F_status_address_s "F_address" - #define F_status_address_not_s "F_address_not" - #define F_status_again_s "F_again" - #define F_status_again_not_s "F_again_not" - #define F_status_all_s "F_all" - #define F_status_all_not_s "F_all_not" - #define F_status_ascii_s "F_ascii" - #define F_status_ascii_not_s "F_ascii_not" - #define F_status_atomic_s "F_atomic" - #define F_status_atomic_not_s "F_atomic_not" - #define F_status_base_s "F_base" - #define F_status_base_not_s "F_base_not" - #define F_status_begin_s "F_begin" - #define F_status_begin_not_s "F_begin_not" - #define F_status_block_s "F_block" - #define F_status_block_not_s "F_block_not" - #define F_status_body_s "F_body" - #define F_status_body_not_s "F_body_not" - #define F_status_bottom_s "F_bottom" - #define F_status_bottom_not_s "F_bottom_not" - #define F_status_bound_s "F_bound" - #define F_status_bound_not_s "F_bound_not" - #define F_status_break_s "F_break" - #define F_status_break_not_s "F_break_not" - #define F_status_call_s "F_call" - #define F_status_call_not_s "F_call_not" - #define F_status_capability_s "F_capability" - #define F_status_capability_not_s "F_capability_not" - #define F_status_character_s "F_character" - #define F_status_character_not_s "F_character_not" - #define F_status_child_s "F_child" - #define F_status_child_not_s "F_child_not" - #define F_status_complete_s "F_complete" - #define F_status_complete_not_s "F_complete_not" - #define F_status_connect_s "F_connect" - #define F_status_connect_not_s "F_connect_not" - #define F_status_connect_refuse_s "F_connect_refuse" - #define F_status_connect_reset_s "F_connect_reset" - #define F_status_container_s "F_container" - #define F_status_container_not_s "F_container_not" - #define F_status_content_s "F_content" - #define F_status_content_not_s "F_content_not" - #define F_status_continue_s "F_continue" - #define F_status_continue_not_s "F_continue_not" - #define F_status_control_s "F_control" - #define F_status_control_not_s "F_control_not" - #define F_status_control_group_s "F_control_group" - #define F_status_control_group_not_s "F_control_group_not" - #define F_status_critical_s "F_critical" - #define F_status_critical_not_s "F_critical_not" - #define F_status_dead_s "F_dead" - #define F_status_dead_not_s "F_dead_not" - #define F_status_deadlock_s "F_deadlock" - #define F_status_deadlock_not_s "F_deadlock_not" - #define F_status_descriptor_s "F_descriptor" - #define F_status_descriptor_not_s "F_descriptor_not" - #define F_status_desire_s "F_desire" - #define F_status_desire_not_s "F_desire_not" - #define F_status_device_s "F_device" - #define F_status_device_not_s "F_device_not" - #define F_status_discard_s "F_discard" - #define F_status_discard_not_s "F_discard_not" - #define F_status_disable_s "F_disable" - #define F_status_disable_not_s "F_disable_not" - #define F_status_domain_s "F_domain" - #define F_status_domain_not_s "F_domain_not" - #define F_status_done_s "F_done" - #define F_status_done_not_s "F_done_not" - #define F_status_drop_s "F_drop" - #define F_status_drop_not_s "F_drop_not" - #define F_status_dummy_s "F_dummy" - #define F_status_dummy_not_s "F_dummy_not" - #define F_status_empty_s "F_empty" - #define F_status_empty_not_s "F_empty_not" - #define F_status_enable_s "F_enable" - #define F_status_enable_not_s "F_enable_not" - #define F_status_encoding_s "F_encoding" - #define F_status_encoding_not_s "F_encoding_not" - #define F_status_endian_s "F_endian" - #define F_status_endian_big_s "F_endian_big" - #define F_status_endian_little_s "F_endian_little" - #define F_status_endian_not_s "F_endian_not" - #define F_status_enter_s "F_enter" - #define F_status_enter_not_s "F_enter_not" - #define F_status_eoa_s "F_eoa" - #define F_status_eoa_not_s "F_eoa_not" - #define F_status_eof_s "F_eof" - #define F_status_eof_not_s "F_eof_not" - #define F_status_eol_s "F_eol" - #define F_status_eol_not_s "F_eol_not" - #define F_status_eos_s "F_eos" - #define F_status_eos_not_s "F_eos_not" - #define F_status_execute_s "F_execute" - #define F_status_execute_not_s "F_execute_not" - #define F_status_exist_s "F_exist" - #define F_status_exist_not_s "F_exist_not" - #define F_status_exit_s "F_exit" - #define F_status_exit_not_s "F_exit_not" - #define F_status_failure_s "F_failure" - #define F_status_failure_not_s "F_failure_not" - #define F_status_family_s "F_family" - #define F_status_family_not_s "F_family_not" - #define F_status_fifo_s "F_fifo" - #define F_status_fifo_not_s "F_fifo_not" - #define F_status_first_s "F_first" - #define F_status_first_not_s "F_first_not" - #define F_status_footer_s "F_footer" - #define F_status_footer_not_s "F_footer_not" - #define F_status_fork_s "F_fork" - #define F_status_fork_not_s "F_fork_not" - #define F_status_format_s "F_format" - #define F_status_format_not_s "F_format_not" - #define F_status_found_s "F_found" - #define F_status_found_not_s "F_found_not" - #define F_status_full_s "F_full" - #define F_status_full_not_s "F_full_not" - #define F_status_group_s "F_group" - #define F_status_group_not_s "F_group_not" - #define F_status_halt_s "F_halt" - #define F_status_halt_not_s "F_halt_not" - #define F_status_header_s "F_header" - #define F_status_header_not_s "F_header_not" - #define F_status_help_s "F_help" - #define F_status_help_not_s "F_help_not" - #define F_status_ignore_s "F_ignore" - #define F_status_ignore_not_s "F_ignore_not" - #define F_status_implement_s "F_implement" - #define F_status_implement_not_s "F_implement_not" - #define F_status_input_s "F_input" - #define F_status_input_not_s "F_input_not" - #define F_status_input_output_s "F_input_output" - #define F_status_interrupt_s "F_interrupt" - #define F_status_interrupt_not_s "F_interrupt_not" - #define F_status_keep_s "F_keep" - #define F_status_keep_not_s "F_keep_not" - #define F_status_known_s "F_known" - #define F_status_known_not_s "F_known_not" - #define F_status_last_s "F_last" - #define F_status_last_not_s "F_last_not" - #define F_status_limit_s "F_limit" - #define F_status_limit_not_s "F_limit_not" - #define F_status_link_s "F_link" - #define F_status_link_not_s "F_link_not" - #define F_status_live_s "F_live" - #define F_status_live_not_s "F_live_not" - #define F_status_load_s "F_load" - #define F_status_load_not_s "F_load_not" - #define F_status_local_s "F_local" - #define F_status_local_not_s "F_local_not" - #define F_status_lock_s "F_lock" - #define F_status_lock_mutex_s "F_lock_mutex" - #define F_status_lock_mutex_not_s "F_lock_mutex_not" - #define F_status_lock_not_s "F_lock_not" - #define F_status_lock_read_s "F_lock_read" - #define F_status_lock_read_not_s "F_lock_read_not" - #define F_status_lock_spin_s "F_lock_spin" - #define F_status_lock_spin_not_s "F_lock_spin_not" - #define F_status_lock_write_s "F_lock_write" - #define F_status_lock_write_not_s "F_lock_write_not" - #define F_status_loop_s "F_loop" - #define F_status_loop_not_s "F_loop_not" - #define F_status_maximum_s "F_maximum" - #define F_status_maximum_not_s "F_maximum_not" - #define F_status_maybe_s "F_maybe" - #define F_status_maybe_not_s "F_maybe_not" - #define F_status_memory_s "F_memory" - #define F_status_memory_not_s "F_memory_not" - #define F_status_message_s "F_message" - #define F_status_message_not_s "F_message_not" - #define F_status_middle_s "F_middle" - #define F_status_middle_not_s "F_middle_not" - #define F_status_minimum_s "F_minimum" - #define F_status_minimum_not_s "F_minimum_not" - #define F_status_minor_s "F_minor" - #define F_status_minor_not_s "F_minor_not" - #define F_status_moderate_s "F_moderate" - #define F_status_moderate_not_s "F_moderate_not" - #define F_status_mount_s "F_mount" - #define F_status_mount_not_s "F_mount_not" - #define F_status_name_s "F_name" - #define F_status_name_not_s "F_name_not" - #define F_status_need_s "F_need" - #define F_status_need_not_s "F_need_not" - #define F_status_next_s "F_next" - #define F_status_next_not_s "F_next_not" - #define F_status_nice_s "F_nice" - #define F_status_nice_not_s "F_nice_not" - #define F_status_no_s "F_no" - #define F_status_no_not_s "F_no_not" - #define F_status_none_s "F_none" - #define F_status_none_not_s "F_none_not" - #define F_status_object_s "F_object" - #define F_status_object_not_s "F_object_not" - #define F_status_once_s "F_once" - #define F_status_once_not_s "F_once_not" - #define F_status_option_s "F_option" - #define F_status_option_not_s "F_option_not" - #define F_status_output_s "F_output" - #define F_status_output_not_s "F_output_not" - #define F_status_packet_s "F_packet" - #define F_status_packet_not_s "F_packet_not" - #define F_status_packet_too_large_s "F_packet_too_large" - #define F_status_packet_too_large_not_s "F_packet_too_large_not" - #define F_status_packet_too_small_s "F_packet_too_small" - #define F_status_packet_too_small_not_s "F_packet_too_small_not" - #define F_status_parameter_s "F_parameter" - #define F_status_parameter_not_s "F_parameter_not" - #define F_status_parent_s "F_parent" - #define F_status_parent_not_s "F_parent_not" - #define F_status_partial_s "F_partial" - #define F_status_partial_not_s "F_partial_not" - #define F_status_payload_s "F_payload" - #define F_status_payload_not_s "F_payload_not" - #define F_status_payload_too_large_s "F_payload_too_large" - #define F_status_payload_too_large_not_s "F_payload_too_large_not" - #define F_status_payload_too_small_s "F_payload_too_small" - #define F_status_payload_too_small_not_s "F_payload_too_small_not" - #define F_status_pipe_s "F_pipe" - #define F_status_pipe_not_s "F_pipe_not" - #define F_status_port_s "F_port" - #define F_status_port_not_s "F_port_not" - #define F_status_previous_s "F_previous" - #define F_status_previous_not_s "F_previous_not" - #define F_status_processor_s "F_processor" - #define F_status_processor_not_s "F_processor_not" - #define F_status_progress_s "F_progress" - #define F_status_progress_not_s "F_progress_not" - #define F_status_prohibited_s "F_prohibited" - #define F_status_prohibited_not_s "F_prohibited_not" - #define F_status_property_s "F_property" - #define F_status_property_not_s "F_property_not" - #define F_status_protocol_s "F_protocol" - #define F_status_protocol_not_s "F_protocol_not" - #define F_status_range_s "F_range" - #define F_status_range_not_s "F_range_not" - #define F_status_read_s "F_read" - #define F_status_read_not_s "F_read_not" - #define F_status_read_only_s "F_read_only" - #define F_status_ready_s "F_ready" - #define F_status_ready_not_s "F_ready_not" - #define F_status_receive_s "F_receive" - #define F_status_receive_not_s "F_receive_not" - #define F_status_recover_s "F_recover" - #define F_status_recover_not_s "F_recover_not" - #define F_status_recurse_s "F_recurse" - #define F_status_recurse_not_s "F_recurse_not" - #define F_status_refresh_s "F_refresh" - #define F_status_refresh_not_s "F_refresh_not" - #define F_status_regular_s "F_regular" - #define F_status_regular_not_s "F_regular_not" - #define F_status_relative_s "F_relative" - #define F_status_relative_not_s "F_relative_not" - #define F_status_reload_s "F_reload" - #define F_status_reload_not_s "F_reload_not" - #define F_status_remote_s "F_remote" - #define F_status_remote_not_s "F_remote_not" - #define F_status_remove_s "F_remove" - #define F_status_remove_not_s "F_remove_not" - #define F_status_repeat_s "F_repeat" - #define F_status_repeat_not_s "F_repeat_not" - #define F_status_require_s "F_require" - #define F_status_require_not_s "F_require_not" - #define F_status_resource_s "F_resource" - #define F_status_resource_not_s "F_resource_not" - #define F_status_restart_s "F_restart" - #define F_status_restart_not_s "F_restart_not" - #define F_status_restore_s "F_restore" - #define F_status_restore_not_s "F_restore_not" - #define F_status_revert_s "F_revert" - #define F_status_revert_not_s "F_revert_not" - #define F_status_schedule_s "F_schedule" - #define F_status_schedule_not_s "F_schedule_not" - #define F_status_search_s "F_search" - #define F_status_search_not_s "F_search_not" - #define F_status_send_s "F_send" - #define F_status_send_not_s "F_send_not" - #define F_status_size_s "F_size" - #define F_status_size_not_s "F_size_not" - #define F_status_signal_s "F_signal" - #define F_status_signal_not_s "F_signal_not" - #define F_status_skip_s "F_skip" - #define F_status_skip_not_s "F_skip_not" - #define F_status_some_s "F_some" - #define F_status_some_not_s "F_some_not" - #define F_status_space_s "F_space" - #define F_status_space_not_s "F_space_not" - #define F_status_start_s "F_start" - #define F_status_start_not_s "F_start_not" - #define F_status_status_s "F_status" - #define F_status_status_not_s "F_status_not" - #define F_status_stop_s "F_stop" - #define F_status_stop_not_s "F_stop_not" - #define F_status_store_s "F_store" - #define F_status_store_not_s "F_store_not" - #define F_status_stream_s "F_stream" - #define F_status_stream_not_s "F_stream_not" - #define F_status_string_s "F_string" - #define F_status_string_not_s "F_string_not" - #define F_status_string_too_large_s "F_string_too_large" - #define F_status_string_too_small_s "F_string_too_small" - #define F_status_syntax_s "F_syntax" - #define F_status_syntax_not_s "F_syntax_not" - #define F_status_terminate_s "F_terminate" - #define F_status_terminate_not_s "F_terminate_not" - #define F_status_test_s "F_test" - #define F_status_test_not_s "F_test_not" - #define F_status_thread_s "F_thread" - #define F_status_thread_not_s "F_thread_not" - #define F_status_time_s "F_time" - #define F_status_time_not_s "F_time_not" - #define F_status_time_out_s "F_time_out" - #define F_status_too_large_s "F_too_large" - #define F_status_too_small_s "F_too_small" - #define F_status_top_s "F_top" - #define F_status_top_not_s "F_top_not" - #define F_status_type_s "F_type" - #define F_status_type_not_s "F_type_not" - #define F_status_success_s "F_success" - #define F_status_success_not_s "F_success_not" - #define F_status_support_s "F_support" - #define F_status_support_not_s "F_support_not" - #define F_status_unload_s "F_unload" - #define F_status_unload_not_s "F_unload_not" - #define F_status_user_s "F_user" - #define F_status_user_not_s "F_user_not" - #define F_status_utf_s "F_utf" - #define F_status_utf_fragment_s "F_utf_fragment" - #define F_status_utf_fragment_not_s "F_utf_fragment_not" - #define F_status_utf_not_s "F_utf_not" - #define F_status_valid_s "F_valid" - #define F_status_valid_not_s "F_valid_not" - #define F_status_value_s "F_value" - #define F_status_value_not_s "F_value_not" - #define F_status_wait_s "F_wait" - #define F_status_wait_not_s "F_wait_not" - #define F_status_want_s "F_want" - #define F_status_want_not_s "F_want_not" - #define F_status_wish_s "F_wish" - #define F_status_wish_not_s "F_wish_not" - #define F_status_world_s "F_world" - #define F_status_world_not_s "F_world_not" - #define F_status_write_s "F_write" - #define F_status_write_not_s "F_write_not" - #define F_status_write_only_s "F_write_only" - #define F_status_yes_s "F_yes" - #define F_status_yes_not_s "F_yes_not" - - #define F_status_okay_s_length 6 - #define F_status_okay_block_s_length 12 - #define F_status_okay_eoa_s_length 10 - #define F_status_okay_eof_s_length 10 - #define F_status_okay_eol_s_length 10 - #define F_status_okay_eos_s_length 10 - #define F_status_okay_not_s_length 10 - #define F_status_okay_start_s_length 12 - #define F_status_okay_stop_s_length 11 - #define F_status_abort_s_length 7 - #define F_status_abort_not_s_length 11 - #define F_status_absolute_s_length 10 - #define F_status_absolute_not_s_length 14 - #define F_status_add_s_length 5 - #define F_status_add_not_s_length 9 - #define F_status_address_s_length 9 - #define F_status_address_not_s_length 13 - #define F_status_again_s_length 7 - #define F_status_again_not_s_length 11 - #define F_status_all_s_length 5 - #define F_status_all_not_s_length 9 - #define F_status_ascii_s_length 7 - #define F_status_ascii_not_s_length 11 - #define F_status_atomic_s_length 8 - #define F_status_atomic_not_s_length 12 - #define F_status_base_s_length 6 - #define F_status_base_not_s_length 10 - #define F_status_begin_s_length 7 - #define F_status_begin_not_s_length 11 - #define F_status_break_s_length 7 - #define F_status_break_not_s_length 11 - #define F_status_block_s_length 7 - #define F_status_block_not_s_length 11 - #define F_status_body_s_length 6 - #define F_status_body_not_s_length 10 - #define F_status_bottom_s_length 8 - #define F_status_bottom_not_s_length 12 - #define F_status_bound_s_length 7 - #define F_status_bound_not_s_length 11 - #define F_status_call_s_length 6 - #define F_status_call_not_s_length 10 - #define F_status_capability_s_length 12 - #define F_status_capability_not_s_length 16 - #define F_status_character_s_length 11 - #define F_status_character_not_s_length 15 - #define F_status_child_s_length 7 - #define F_status_child_not_s_length 11 - #define F_status_complete_s_length 10 - #define F_status_complete_not_s_length 14 - #define F_status_connect_s_length 9 - #define F_status_connect_not_s_length 13 - #define F_status_connect_refuse_s_length 16 - #define F_status_connect_reset_s_length 15 - #define F_status_container_s_length 11 - #define F_status_container_not_s_length 15 - #define F_status_content_s_length 9 - #define F_status_content_not_s_length 13 - #define F_status_continue_s_length 10 - #define F_status_continue_not_s_length 14 - #define F_status_control_s_length 9 - #define F_status_control_not_s_length 13 - #define F_status_control_group_s_length 15 - #define F_status_control_group_not_s_length 19 - #define F_status_critical_s_length 10 - #define F_status_critical_not_s_length 14 - #define F_status_dead_s_length 6 - #define F_status_dead_not_s_length 10 - #define F_status_deadlock_s_length 10 - #define F_status_deadlock_not_s_length 14 - #define F_status_descriptor_s_length 12 - #define F_status_descriptor_not_s_length 16 - #define F_status_desire_s_length 8 - #define F_status_desire_not_s_length 12 - #define F_status_device_s_length 8 - #define F_status_device_not_s_length 12 - #define F_status_discard_s_length 9 - #define F_status_discard_not_s_length 13 - #define F_status_disable_s_length 9 - #define F_status_disable_not_s_length 13 - #define F_status_domain_s_length 8 - #define F_status_domain_not_s_length 12 - #define F_status_done_s_length 6 - #define F_status_done_not_s_length 10 - #define F_status_drop_s_length 6 - #define F_status_drop_not_s_length 10 - #define F_status_dummy_s_length 7 - #define F_status_dummy_not_s_length 11 - #define F_status_empty_s_length 7 - #define F_status_empty_not_s_length 11 - #define F_status_enable_s_length 8 - #define F_status_enable_not_s_length 12 - #define F_status_encoding_s_length 10 - #define F_status_encoding_not_s_length 14 - #define F_status_endian_s_length 8 - #define F_status_endian_big_s_length 12 - #define F_status_endian_little_s_length 19 - #define F_status_endian_not_s_length 12 - #define F_status_enter_s_length 7 - #define F_status_enter_not_s_length 11 - #define F_status_eoa_s_length 5 - #define F_status_eoa_not_s_length 9 - #define F_status_eof_s_length 5 - #define F_status_eof_not_s_length 9 - #define F_status_eol_s_length 5 - #define F_status_eol_not_s_length 9 - #define F_status_eos_s_length 5 - #define F_status_eos_not_s_length 9 - #define F_status_execute_s_length 9 - #define F_status_execute_not_s_length 13 - #define F_status_exist_s_length 7 - #define F_status_exist_not_s_length 11 - #define F_status_exit_s_length 6 - #define F_status_exit_not_s_length 10 - #define F_status_failure_s_length 9 - #define F_status_failure_not_s_length 13 - #define F_status_family_s_length 8 - #define F_status_family_not_s_length 12 - #define F_status_fifo_s_length 6 - #define F_status_fifo_not_s_length 10 - #define F_status_first_s_length 7 - #define F_status_first_not_s_length 11 - #define F_status_footer_s_length 8 - #define F_status_footer_not_s_length 12 - #define F_status_fork_s_length 6 - #define F_status_fork_not_s_length 10 - #define F_status_format_s_length 8 - #define F_status_format_not_s_length 12 - #define F_status_found_s_length 7 - #define F_status_found_not_s_length 11 - #define F_status_full_s_length 6 - #define F_status_full_not_s_length 10 - #define F_status_group_s_length 7 - #define F_status_group_not_s_length 11 - #define F_status_halt_s_length 6 - #define F_status_halt_not_s_length 10 - #define F_status_header_s_length 8 - #define F_status_header_not_s_length 12 - #define F_status_help_s_length 6 - #define F_status_help_not_s_length 10 - #define F_status_ignore_s_length 8 - #define F_status_ignore_not_s_length 12 - #define F_status_implement_s_length 11 - #define F_status_implement_not_s_length 15 - #define F_status_input_s_length 7 - #define F_status_input_not_s_length 11 - #define F_status_input_output_s_length 14 - #define F_status_interrupt_s_length 11 - #define F_status_interrupt_not_s_length 15 - #define F_status_keep_s_length 6 - #define F_status_keep_not_s_length 10 - #define F_status_known_s_length 7 - #define F_status_known_not_s_length 11 - #define F_status_last_s_length 6 - #define F_status_last_not_s_length 10 - #define F_status_limit_s_length 7 - #define F_status_limit_not_s_length 11 - #define F_status_link_s_length 6 - #define F_status_link_not_s_length 10 - #define F_status_live_s_length 6 - #define F_status_live_not_s_length 10 - #define F_status_load_s_length 6 - #define F_status_load_not_s_length 10 - #define F_status_local_s_length 7 - #define F_status_local_not_s_length 11 - #define F_status_lock_s_length 6 - #define F_status_lock_mutex_s_length 12 - #define F_status_lock_mutex_not_s_length 16 - #define F_status_lock_not_s_length 10 - #define F_status_lock_read_s_length 11 - #define F_status_lock_read_not_s_length 15 - #define F_status_lock_spin_s_length 11 - #define F_status_lock_spin_not_s_length 15 - #define F_status_lock_write_s_length 12 - #define F_status_lock_write_not_s_length 16 - #define F_status_loop_s_length 6 - #define F_status_loop_not_s_length 10 - #define F_status_maximum_s_length 9 - #define F_status_maximum_not_s_length 13 - #define F_status_maybe_s_length 7 - #define F_status_maybe_not_s_length 11 - #define F_status_memory_s_length 8 - #define F_status_memory_not_s_length 12 - #define F_status_message_s_length 9 - #define F_status_message_not_s_length 13 - #define F_status_middle_s_length 8 - #define F_status_middle_not_s_length 12 - #define F_status_minimum_s_length 9 - #define F_status_minimum_not_s_length 13 - #define F_status_minor_s_length 7 - #define F_status_minor_not_s_length 11 - #define F_status_moderate_s_length 10 - #define F_status_moderate_not_s_length 14 - #define F_status_mount_s_length 7 - #define F_status_mount_not_s_length 11 - #define F_status_name_s_length 6 - #define F_status_name_not_s_length 10 - #define F_status_need_s_length 6 - #define F_status_need_not_s_length 10 - #define F_status_next_s_length 6 - #define F_status_next_not_s_length 10 - #define F_status_nice_s_length 6 - #define F_status_nice_not_s_length 10 - #define F_status_no_s_length 4 - #define F_status_no_not_s_length 8 - #define F_status_none_s_length 6 - #define F_status_none_not_s_length 10 - #define F_status_object_s_length 8 - #define F_status_object_not_s_length 12 - #define F_status_once_s_length 6 - #define F_status_once_not_s_length 10 - #define F_status_option_s_length 8 - #define F_status_option_not_s_length 12 - #define F_status_output_s_length 8 - #define F_status_output_not_s_length 12 - #define F_status_packet_s_length 8 - #define F_status_packet_not_s_length 12 - #define F_status_packet_too_large_s_length 18 - #define F_status_packet_too_large_not_s_length 22 - #define F_status_packet_too_small_s_length 18 - #define F_status_packet_too_small_not_s_length 22 - #define F_status_parameter_s_length 11 - #define F_status_parameter_not_s_length 15 - #define F_status_parent_s_length 8 - #define F_status_parent_not_s_length 12 - #define F_status_partial_s_length 9 - #define F_status_partial_not_s_length 13 - #define F_status_payload_s_length 9 - #define F_status_payload_not_s_length 13 - #define F_status_payload_too_large_s_length 19 - #define F_status_payload_too_large_not_s_length 23 - #define F_status_payload_too_small_s_length 19 - #define F_status_payload_too_small_not_s_length 23 - #define F_status_pipe_s_length 6 - #define F_status_pipe_not_s_length 10 - #define F_status_port_s_length 6 - #define F_status_port_not_s_length 10 - #define F_status_previous_s_length 10 - #define F_status_previous_not_s_length 14 - #define F_status_processor_s_length 11 - #define F_status_processor_not_s_length 15 - #define F_status_progress_s_length 10 - #define F_status_progress_not_s_length 14 - #define F_status_prohibited_s_length 12 - #define F_status_prohibited_not_s_length 16 - #define F_status_property_s_length 10 - #define F_status_property_not_s_length 14 - #define F_status_protocol_s_length 10 - #define F_status_protocol_not_s_length 14 - #define F_status_range_s_length 7 - #define F_status_range_not_s_length 11 - #define F_status_read_s_length 6 - #define F_status_read_not_s_length 10 - #define F_status_read_only_s_length 11 - #define F_status_ready_s_length 7 - #define F_status_ready_not_s_length 11 - #define F_status_receive_s_length 9 - #define F_status_receive_not_s_length 13 - #define F_status_recover_s_length 9 - #define F_status_recover_not_s_length 13 - #define F_status_recurse_s_length 9 - #define F_status_recurse_not_s_length 13 - #define F_status_refresh_s_length 9 - #define F_status_refresh_not_s_length 13 - #define F_status_regular_s_length 9 - #define F_status_regular_not_s_length 13 - #define F_status_relative_s_length 10 - #define F_status_relative_not_s_length 14 - #define F_status_reload_s_length 8 - #define F_status_reload_not_s_length 12 - #define F_status_remote_s_length 8 - #define F_status_remote_not_s_length 12 - #define F_status_remove_s_length 8 - #define F_status_remove_not_s_length 12 - #define F_status_repeat_s_length 8 - #define F_status_repeat_not_s_length 12 - #define F_status_require_s_length 9 - #define F_status_require_not_s_length 13 - #define F_status_resource_s_length 10 - #define F_status_resource_not_s_length 14 - #define F_status_restart_s_length 9 - #define F_status_restart_not_s_length 13 - #define F_status_restore_s_length 9 - #define F_status_restore_not_s_length 13 - #define F_status_revert_s_length 8 - #define F_status_revert_not_s_length 12 - #define F_status_schedule_s_length 10 - #define F_status_schedule_not_s_length 14 - #define F_status_search_s_length 8 - #define F_status_search_not_s_length 12 - #define F_status_send_s_length 6 - #define F_status_send_not_s_length 10 - #define F_status_size_s_length 6 - #define F_status_size_not_s_length 10 - #define F_status_signal_s_length 8 - #define F_status_signal_not_s_length 12 - #define F_status_skip_s_length 6 - #define F_status_skip_not_s_length 10 - #define F_status_some_s_length 6 - #define F_status_some_not_s_length 10 - #define F_status_space_s_length 7 - #define F_status_space_not_s_length 11 - #define F_status_start_s_length 7 - #define F_status_start_not_s_length 11 - #define F_status_status_s_length 8 - #define F_status_status_not_s_length 12 - #define F_status_stop_s_length 6 - #define F_status_stop_not_s_length 10 - #define F_status_store_s_length 7 - #define F_status_store_not_s_length 11 - #define F_status_stream_s_length 8 - #define F_status_stream_not_s_length 12 - #define F_status_string_s_length 8 - #define F_status_string_not_s_length 12 - #define F_status_string_too_large_s_length 18 - #define F_status_string_too_small_s_length 18 - #define F_status_success_s_length 9 - #define F_status_success_not_s_length 13 - #define F_status_support_s_length 9 - #define F_status_support_not_s_length 13 - #define F_status_syntax_s_length 8 - #define F_status_syntax_not_s_length 12 - #define F_status_terminate_s_length 11 - #define F_status_terminate_not_s_length 15 - #define F_status_test_s_length 6 - #define F_status_test_not_s_length 10 - #define F_status_thread_s_length 8 - #define F_status_thread_not_s_length 12 - #define F_status_time_s_length 6 - #define F_status_time_not_s_length 10 - #define F_status_time_out_s_length 10 - #define F_status_too_large_s_length 11 - #define F_status_too_small_s_length 11 - #define F_status_top_s_length 5 - #define F_status_top_not_s_length 9 - #define F_status_type_s_length 6 - #define F_status_type_not_s_length 10 - #define F_status_unload_s_length 8 - #define F_status_unload_not_s_length 12 - #define F_status_user_s_length 6 - #define F_status_user_not_s_length 10 - #define F_status_utf_s_length 5 - #define F_status_utf_fragment_s_length 14 - #define F_status_utf_fragment_not_s_length 18 - #define F_status_utf_not_s_length 9 - #define F_status_valid_s_length 7 - #define F_status_valid_not_s_length 11 - #define F_status_value_s_length 7 - #define F_status_value_not_s_length 11 - #define F_status_wait_s_length 6 - #define F_status_wait_not_s_length 10 - #define F_status_want_s_length 6 - #define F_status_want_not_s_length 10 - #define F_status_wish_s_length 6 - #define F_status_wish_not_s_length 10 - #define F_status_world_s_length 7 - #define F_status_world_not_s_length 11 - #define F_status_write_s_length 7 - #define F_status_write_not_s_length 11 - #define F_status_write_only_s_length 12 - #define F_status_yes_s_length 5 - #define F_status_yes_not_s_length 9 + #define F_status_okay_s "F_okay" + #define F_status_okay_block_s "F_okay_block" + #define F_status_okay_eoa_s "F_okay_eoa" + #define F_status_okay_eof_s "F_okay_eof" + #define F_status_okay_eol_s "F_okay_eol" + #define F_status_okay_eos_s "F_okay_eos" + #define F_status_okay_not_s "F_okay_not" + #define F_status_okay_start_s "F_okay_start" + #define F_status_okay_stop_s "F_okay_stop" + #define F_status_abort_s "F_abort" + #define F_status_abort_not_s "F_abort_not" + #define F_status_absolute_s "F_absolute" + #define F_status_absolute_not_s "F_absolute_not" + #define F_status_add_s "F_add" + #define F_status_add_not_s "F_add_not" + #define F_status_address_s "F_address" + #define F_status_address_not_s "F_address_not" + #define F_status_again_s "F_again" + #define F_status_again_not_s "F_again_not" + #define F_status_all_s "F_all" + #define F_status_all_not_s "F_all_not" + #define F_status_array_s "F_array" + #define F_status_array_not_s "F_array_not" + #define F_status_array_too_large_s "F_array_too_large" + #define F_status_array_too_small_s "F_array_too_small" + #define F_status_ascii_s "F_ascii" + #define F_status_ascii_not_s "F_ascii_not" + #define F_status_atomic_s "F_atomic" + #define F_status_atomic_not_s "F_atomic_not" + #define F_status_available_s "F_available" + #define F_status_available_not_s "F_available_not" + #define F_status_available_not_address_s "F_available_not_address" + #define F_status_available_not_buffer_s "F_available_not_buffer" + #define F_status_available_not_device_s "F_available_not_device" + #define F_status_available_not_pipe_s "F_available_not_pipe" + #define F_status_available_not_port_s "F_available_not_port" + #define F_status_available_not_process_s "F_available_not_process" + #define F_status_available_not_socket_s "F_available_not_socket" + #define F_status_base_s "F_base" + #define F_status_base_not_s "F_base_not" + #define F_status_begin_s "F_begin" + #define F_status_begin_not_s "F_begin_not" + #define F_status_block_s "F_block" + #define F_status_block_not_s "F_block_not" + #define F_status_body_s "F_body" + #define F_status_body_not_s "F_body_not" + #define F_status_bottom_s "F_bottom" + #define F_status_bottom_not_s "F_bottom_not" + #define F_status_bound_s "F_bound" + #define F_status_bound_not_s "F_bound_not" + #define F_status_break_s "F_break" + #define F_status_break_not_s "F_break_not" + #define F_status_buffer_s "F_buffer" + #define F_status_buffer_not_s "F_buffer_not" + #define F_status_buffer_overflow_s "F_buffer_overflow" + #define F_status_buffer_too_large_s "F_buffer_too_large" + #define F_status_buffer_too_small_s "F_buffer_too_small" + #define F_status_buffer_underflow_s "F_buffer_underflow" + #define F_status_busy_s "F_busy" + #define F_status_busy_address_s "F_busy_address" + #define F_status_busy_buffer_s "F_busy_buffer" + #define F_status_busy_device_s "F_busy_device" + #define F_status_busy_not_s "F_busy_not" + #define F_status_busy_pipe_s "F_busy_pipe" + #define F_status_busy_port_s "F_busy_port" + #define F_status_busy_process_s "F_busy_process" + #define F_status_busy_socket_s "F_busy_socket" + #define F_status_call_s "F_call" + #define F_status_call_not_s "F_call_not" + #define F_status_capability_s "F_capability" + #define F_status_capability_not_s "F_capability_not" + #define F_status_character_s "F_character" + #define F_status_character_not_s "F_character_not" + #define F_status_child_s "F_child" + #define F_status_child_not_s "F_child_not" + #define F_status_complete_s "F_complete" + #define F_status_complete_not_s "F_complete_not" + #define F_status_complete_not_utf_s "F_complete_not_utf" + #define F_status_complete_not_utf_block_s "F_complete_not_utf_block" + #define F_status_complete_not_utf_eoa_s "F_complete_not_utf_eoa" + #define F_status_complete_not_utf_eof_s "F_complete_not_utf_eof" + #define F_status_complete_not_utf_eol_s "F_complete_not_utf_eol" + #define F_status_complete_not_utf_eos_s "F_complete_not_utf_eos" + #define F_status_complete_not_utf_start_s "F_complete_not_utf_start" + #define F_status_complete_not_utf_stop_s "F_complete_not_utf_stop" + #define F_status_connect_s "F_connect" + #define F_status_connect_not_s "F_connect_not" + #define F_status_connect_refuse_s "F_connect_refuse" + #define F_status_connect_reset_s "F_connect_reset" + #define F_status_container_s "F_container" + #define F_status_container_not_s "F_container_not" + #define F_status_content_s "F_content" + #define F_status_content_not_s "F_content_not" + #define F_status_continue_s "F_continue" + #define F_status_continue_not_s "F_continue_not" + #define F_status_control_s "F_control" + #define F_status_control_not_s "F_control_not" + #define F_status_control_group_s "F_control_group" + #define F_status_control_group_not_s "F_control_group_not" + #define F_status_critical_s "F_critical" + #define F_status_critical_not_s "F_critical_not" + #define F_status_data_s "F_data" + #define F_status_data_not_s "F_data_not" + #define F_status_data_not_block_s "F_data_not_block" + #define F_status_data_not_eoa_s "F_data_not_eoa" + #define F_status_data_not_eof_s "F_data_not_eof" + #define F_status_data_not_eol_s "F_data_not_eol" + #define F_status_data_not_eos_s "F_data_not_eos" + #define F_status_data_not_start_s "F_data_not_start" + #define F_status_data_not_stop_s "F_data_not_stop" + #define F_status_dead_s "F_dead" + #define F_status_dead_not_s "F_dead_not" + #define F_status_deadlock_s "F_deadlock" + #define F_status_deadlock_not_s "F_deadlock_not" + #define F_status_debug_s "F_debug" + #define F_status_debug_not_s "F_debug_not" + #define F_status_descriptor_s "F_descriptor" + #define F_status_descriptor_not_s "F_descriptor_not" + #define F_status_desire_s "F_desire" + #define F_status_desire_not_s "F_desire_not" + #define F_status_device_s "F_device" + #define F_status_device_not_s "F_device_not" + #define F_status_discard_s "F_discard" + #define F_status_discard_not_s "F_discard_not" + #define F_status_disable_s "F_disable" + #define F_status_disable_not_s "F_disable_not" + #define F_status_domain_s "F_domain" + #define F_status_domain_not_s "F_domain_not" + #define F_status_done_s "F_done" + #define F_status_done_not_s "F_done_not" + #define F_status_drop_s "F_drop" + #define F_status_drop_not_s "F_drop_not" + #define F_status_dummy_s "F_dummy" + #define F_status_dummy_not_s "F_dummy_not" + #define F_status_empty_s "F_empty" + #define F_status_empty_not_s "F_empty_not" + #define F_status_enable_s "F_enable" + #define F_status_enable_not_s "F_enable_not" + #define F_status_encoding_s "F_encoding" + #define F_status_encoding_not_s "F_encoding_not" + #define F_status_end_s "F_end" + #define F_status_end_not_s "F_end_not" + #define F_status_end_not_block_s "F_end_not_block" + #define F_status_end_not_eoa_s "F_end_not_eoa" + #define F_status_end_not_eof_s "F_end_not_eof" + #define F_status_end_not_eol_s "F_end_not_eol" + #define F_status_end_not_eos_s "F_end_not_eos" + #define F_status_end_not_start_s "F_end_not_start" + #define F_status_end_not_stop_s "F_end_not_stop" + #define F_status_end_not_group_s "F_end_not_group" + #define F_status_end_not_group_block_s "F_end_not_group_block" + #define F_status_end_not_group_eoa_s "F_end_not_group_eoa" + #define F_status_end_not_group_eof_s "F_end_not_group_eof" + #define F_status_end_not_group_eol_s "F_end_not_group_eol" + #define F_status_end_not_group_eos_s "F_end_not_group_eos" + #define F_status_end_not_group_start_s "F_end_not_group_start" + #define F_status_end_not_group_stop_s "F_end_not_group_stop" + #define F_status_end_not_nest_s "F_end_not_nest" + #define F_status_end_not_nest_block_s "F_end_not_nest_block" + #define F_status_end_not_nest_eoa_s "F_end_not_nest_eoa" + #define F_status_end_not_nest_eof_s "F_end_not_nest_eof" + #define F_status_end_not_nest_eol_s "F_end_not_nest_eol" + #define F_status_end_not_nest_eos_s "F_end_not_nest_eos" + #define F_status_end_not_nest_start_s "F_end_not_nest_start" + #define F_status_end_not_nest_stop_s "F_end_not_nest_stop" + #define F_status_endian_s "F_endian" + #define F_status_endian_big_s "F_endian_big" + #define F_status_endian_little_s "F_endian_little" + #define F_status_endian_not_s "F_endian_not" + #define F_status_enter_s "F_enter" + #define F_status_enter_not_s "F_enter_not" + #define F_status_eoa_s "F_eoa" + #define F_status_eoa_not_s "F_eoa_not" + #define F_status_eof_s "F_eof" + #define F_status_eof_not_s "F_eof_not" + #define F_status_eol_s "F_eol" + #define F_status_eol_not_s "F_eol_not" + #define F_status_eos_s "F_eos" + #define F_status_eos_not_s "F_eos_not" + #define F_status_error_s "F_error" + #define F_status_error_not_s "F_error_not" + #define F_status_execute_s "F_execute" + #define F_status_execute_not_s "F_execute_not" + #define F_status_exist_s "F_exist" + #define F_status_exist_not_s "F_exist_not" + #define F_status_exit_s "F_exit" + #define F_status_exit_not_s "F_exit_not" + #define F_status_failure_s "F_failure" + #define F_status_failure_not_s "F_failure_not" + #define F_status_family_s "F_family" + #define F_status_family_not_s "F_family_not" + #define F_status_fifo_s "F_fifo" + #define F_status_fifo_not_s "F_fifo_not" + #define F_status_fine_s "F_fine" + #define F_status_fine_not_s "F_fine_not" + #define F_status_first_s "F_first" + #define F_status_first_not_s "F_first_not" + #define F_status_footer_s "F_footer" + #define F_status_footer_not_s "F_footer_not" + #define F_status_fork_s "F_fork" + #define F_status_fork_not_s "F_fork_not" + #define F_status_format_s "F_format" + #define F_status_format_not_s "F_format_not" + #define F_status_found_s "F_found" + #define F_status_found_not_s "F_found_not" + #define F_status_full_s "F_full" + #define F_status_full_not_s "F_full_not" + #define F_status_group_s "F_group" + #define F_status_group_not_s "F_group_not" + #define F_status_halt_s "F_halt" + #define F_status_halt_not_s "F_halt_not" + #define F_status_header_s "F_header" + #define F_status_header_not_s "F_header_not" + #define F_status_help_s "F_help" + #define F_status_help_not_s "F_help_not" + #define F_status_ignore_s "F_ignore" + #define F_status_ignore_not_s "F_ignore_not" + #define F_status_implement_s "F_implement" + #define F_status_implement_not_s "F_implement_not" + #define F_status_input_s "F_input" + #define F_status_input_not_s "F_input_not" + #define F_status_input_output_s "F_input_output" + #define F_status_interrupt_s "F_interrupt" + #define F_status_interrupt_not_s "F_interrupt_not" + #define F_status_keep_s "F_keep" + #define F_status_keep_not_s "F_keep_not" + #define F_status_known_s "F_known" + #define F_status_known_not_s "F_known_not" + #define F_status_last_s "F_last" + #define F_status_last_not_s "F_last_not" + #define F_status_limit_s "F_limit" + #define F_status_limit_not_s "F_limit_not" + #define F_status_link_s "F_link" + #define F_status_link_not_s "F_link_not" + #define F_status_live_s "F_live" + #define F_status_live_not_s "F_live_not" + #define F_status_load_s "F_load" + #define F_status_load_not_s "F_load_not" + #define F_status_local_s "F_local" + #define F_status_local_not_s "F_local_not" + #define F_status_lock_s "F_lock" + #define F_status_lock_mutex_s "F_lock_mutex" + #define F_status_lock_mutex_not_s "F_lock_mutex_not" + #define F_status_lock_not_s "F_lock_not" + #define F_status_lock_read_s "F_lock_read" + #define F_status_lock_read_not_s "F_lock_read_not" + #define F_status_lock_spin_s "F_lock_spin" + #define F_status_lock_spin_not_s "F_lock_spin_not" + #define F_status_lock_write_s "F_lock_write" + #define F_status_lock_write_not_s "F_lock_write_not" + #define F_status_loop_s "F_loop" + #define F_status_loop_not_s "F_loop_not" + #define F_status_maximum_s "F_maximum" + #define F_status_maximum_not_s "F_maximum_not" + #define F_status_maybe_s "F_maybe" + #define F_status_maybe_not_s "F_maybe_not" + #define F_status_memory_s "F_memory" + #define F_status_memory_not_s "F_memory_not" + #define F_status_message_s "F_message" + #define F_status_message_not_s "F_message_not" + #define F_status_middle_s "F_middle" + #define F_status_middle_not_s "F_middle_not" + #define F_status_minimum_s "F_minimum" + #define F_status_minimum_not_s "F_minimum_not" + #define F_status_minor_s "F_minor" + #define F_status_minor_not_s "F_minor_not" + #define F_status_moderate_s "F_moderate" + #define F_status_moderate_not_s "F_moderate_not" + #define F_status_mount_s "F_mount" + #define F_status_mount_not_s "F_mount_not" + #define F_status_name_s "F_name" + #define F_status_name_not_s "F_name_not" + #define F_status_need_s "F_need" + #define F_status_need_not_s "F_need_not" + #define F_status_network_s "F_network" + #define F_status_network_busy_s "F_network_busy" + #define F_status_network_busy_not_s "F_network_busy_not" + #define F_status_network_client_s "F_network_client" + #define F_status_network_client_not_s "F_network_client_not" + #define F_status_network_device_s "F_network_device" + #define F_status_network_device_not_s "F_network_device_not" + #define F_status_network_found_s "F_network_found" + #define F_status_network_found_not_s "F_network_found_not" + #define F_status_network_lost_s "F_network_lost" + #define F_status_network_lost_not_s "F_network_lost_not" + #define F_status_network_not_s "F_network_not" + #define F_status_network_reach_s "F_network_reach" + #define F_status_network_reach_client_s "F_network_reach_client" + #define F_status_network_reach_client_not_s "F_network_reach_client_not" + #define F_status_network_reach_not_s "F_network_reach_not" + #define F_status_network_reach_server_s "F_network_reach_server" + #define F_status_network_reach_server_not_s "F_network_reach_server_not" + #define F_status_network_server_s "F_network_server" + #define F_status_network_server_not_s "F_network_server_not" + #define F_status_network_time_s "F_network_time" + #define F_status_network_time_not_s "F_network_time_not" + #define F_status_network_version_four_s "F_network_version_four" + #define F_status_network_version_four_not_s "F_network_version_four_not" + #define F_status_network_version_six_s "F_network_version_six" + #define F_status_network_version_six_not_s "F_network_version_six_not" + #define F_status_next_s "F_next" + #define F_status_next_not_s "F_next_not" + #define F_status_nice_s "F_nice" + #define F_status_nice_not_s "F_nice_not" + #define F_status_no_s "F_no" + #define F_status_no_not_s "F_no_not" + #define F_status_none_s "F_none" + #define F_status_none_not_s "F_none_not" + #define F_status_number_s "F_number" + #define F_status_number_decimal_s "F_number_decimal" + #define F_status_number_decimal_not_s "F_number_decimal_not" + #define F_status_number_divide_by_zero_s "F_number_divide_by_zero" + #define F_status_number_negative_s "F_number_negative" + #define F_status_number_negative_not_s "F_number_negative_not" + #define F_status_number_not_s "F_number_not" + #define F_status_number_overflow_s "F_number_overflow" + #define F_status_number_positive_s "F_number_positive" + #define F_status_number_positive_not_s "F_number_positive_not" + #define F_status_number_too_large_s "F_number_too_large" + #define F_status_number_too_small_s "F_number_too_small" + #define F_status_number_underflow_s "F_number_underflow" + #define F_status_number_whole_s "F_number_whole" + #define F_status_number_whole_not_s "F_number_whole_not" + #define F_status_number_zero_s "F_number_zero" + #define F_status_number_zero_not_s "F_number_zero_not" + #define F_status_object_s "F_object" + #define F_status_object_not_s "F_object_not" + #define F_status_once_s "F_once" + #define F_status_once_not_s "F_once_not" + #define F_status_option_s "F_option" + #define F_status_option_not_s "F_option_not" + #define F_status_output_s "F_output" + #define F_status_output_not_s "F_output_not" + #define F_status_packet_s "F_packet" + #define F_status_packet_not_s "F_packet_not" + #define F_status_packet_too_large_s "F_packet_too_large" + #define F_status_packet_too_large_not_s "F_packet_too_large_not" + #define F_status_packet_too_small_s "F_packet_too_small" + #define F_status_packet_too_small_not_s "F_packet_too_small_not" + #define F_status_parameter_s "F_parameter" + #define F_status_parameter_not_s "F_parameter_not" + #define F_status_parent_s "F_parent" + #define F_status_parent_not_s "F_parent_not" + #define F_status_partial_s "F_partial" + #define F_status_partial_not_s "F_partial_not" + #define F_status_payload_s "F_payload" + #define F_status_payload_not_s "F_payload_not" + #define F_status_payload_too_large_s "F_payload_too_large" + #define F_status_payload_too_large_not_s "F_payload_too_large_not" + #define F_status_payload_too_small_s "F_payload_too_small" + #define F_status_payload_too_small_not_s "F_payload_too_small_not" + #define F_status_pipe_s "F_pipe" + #define F_status_pipe_not_s "F_pipe_not" + #define F_status_port_s "F_port" + #define F_status_port_not_s "F_port_not" + #define F_status_previous_s "F_previous" + #define F_status_previous_not_s "F_previous_not" + #define F_status_processor_s "F_processor" + #define F_status_processor_not_s "F_processor_not" + #define F_status_progress_s "F_progress" + #define F_status_progress_not_s "F_progress_not" + #define F_status_prohibited_s "F_prohibited" + #define F_status_prohibited_not_s "F_prohibited_not" + #define F_status_property_s "F_property" + #define F_status_property_not_s "F_property_not" + #define F_status_protocol_s "F_protocol" + #define F_status_protocol_not_s "F_protocol_not" + #define F_status_range_s "F_range" + #define F_status_range_not_s "F_range_not" + #define F_status_read_s "F_read" + #define F_status_read_not_s "F_read_not" + #define F_status_read_only_s "F_read_only" + #define F_status_ready_s "F_ready" + #define F_status_ready_not_s "F_ready_not" + #define F_status_receive_s "F_receive" + #define F_status_receive_not_s "F_receive_not" + #define F_status_recover_s "F_recover" + #define F_status_recover_not_s "F_recover_not" + #define F_status_recurse_s "F_recurse" + #define F_status_recurse_not_s "F_recurse_not" + #define F_status_refresh_s "F_refresh" + #define F_status_refresh_not_s "F_refresh_not" + #define F_status_regular_s "F_regular" + #define F_status_regular_not_s "F_regular_not" + #define F_status_relative_s "F_relative" + #define F_status_relative_not_s "F_relative_not" + #define F_status_reload_s "F_reload" + #define F_status_reload_not_s "F_reload_not" + #define F_status_remote_s "F_remote" + #define F_status_remote_not_s "F_remote_not" + #define F_status_remove_s "F_remove" + #define F_status_remove_not_s "F_remove_not" + #define F_status_repeat_s "F_repeat" + #define F_status_repeat_not_s "F_repeat_not" + #define F_status_require_s "F_require" + #define F_status_require_not_s "F_require_not" + #define F_status_resource_s "F_resource" + #define F_status_resource_not_s "F_resource_not" + #define F_status_restart_s "F_restart" + #define F_status_restart_not_s "F_restart_not" + #define F_status_restore_s "F_restore" + #define F_status_restore_not_s "F_restore_not" + #define F_status_revert_s "F_revert" + #define F_status_revert_not_s "F_revert_not" + #define F_status_schedule_s "F_schedule" + #define F_status_schedule_not_s "F_schedule_not" + #define F_status_search_s "F_search" + #define F_status_search_not_s "F_search_not" + #define F_status_send_s "F_send" + #define F_status_send_not_s "F_send_not" + #define F_status_size_s "F_size" + #define F_status_size_not_s "F_size_not" + #define F_status_signal_s "F_signal" + #define F_status_signal_not_s "F_signal_not" + #define F_status_skip_s "F_skip" + #define F_status_skip_not_s "F_skip_not" + #define F_status_some_s "F_some" + #define F_status_some_not_s "F_some_not" + #define F_status_space_s "F_space" + #define F_status_space_not_s "F_space_not" + #define F_status_start_s "F_start" + #define F_status_start_not_s "F_start_not" + #define F_status_status_s "F_status" + #define F_status_status_not_s "F_status_not" + #define F_status_stop_s "F_stop" + #define F_status_stop_not_s "F_stop_not" + #define F_status_store_s "F_store" + #define F_status_store_not_s "F_store_not" + #define F_status_stream_s "F_stream" + #define F_status_stream_not_s "F_stream_not" + #define F_status_string_s "F_string" + #define F_status_string_not_s "F_string_not" + #define F_status_string_too_large_s "F_string_too_large" + #define F_status_string_too_small_s "F_string_too_small" + #define F_status_syntax_s "F_syntax" + #define F_status_syntax_not_s "F_syntax_not" + #define F_status_terminate_s "F_terminate" + #define F_status_terminate_not_s "F_terminate_not" + #define F_status_test_s "F_test" + #define F_status_test_not_s "F_test_not" + #define F_status_thread_s "F_thread" + #define F_status_thread_not_s "F_thread_not" + #define F_status_time_s "F_time" + #define F_status_time_not_s "F_time_not" + #define F_status_time_out_s "F_time_out" + #define F_status_too_large_s "F_too_large" + #define F_status_too_small_s "F_too_small" + #define F_status_top_s "F_top" + #define F_status_top_not_s "F_top_not" + #define F_status_type_s "F_type" + #define F_status_type_not_s "F_type_not" + #define F_status_success_s "F_success" + #define F_status_success_not_s "F_success_not" + #define F_status_support_s "F_support" + #define F_status_support_not_s "F_support_not" + #define F_status_unload_s "F_unload" + #define F_status_unload_not_s "F_unload_not" + #define F_status_user_s "F_user" + #define F_status_user_not_s "F_user_not" + #define F_status_utf_s "F_utf" + #define F_status_utf_fragment_s "F_utf_fragment" + #define F_status_utf_fragment_not_s "F_utf_fragment_not" + #define F_status_utf_not_s "F_utf_not" + #define F_status_valid_s "F_valid" + #define F_status_valid_not_s "F_valid_not" + #define F_status_value_s "F_value" + #define F_status_value_not_s "F_value_not" + #define F_status_wait_s "F_wait" + #define F_status_wait_not_s "F_wait_not" + #define F_status_want_s "F_want" + #define F_status_want_not_s "F_want_not" + #define F_status_warning_s "F_warning" + #define F_status_warning_not_s "F_warning_not" + #define F_status_wish_s "F_wish" + #define F_status_wish_not_s "F_wish_not" + #define F_status_world_s "F_world" + #define F_status_world_not_s "F_world_not" + #define F_status_write_s "F_write" + #define F_status_write_not_s "F_write_not" + #define F_status_write_only_s "F_write_only" + #define F_status_yes_s "F_yes" + #define F_status_yes_not_s "F_yes_not" + + #define F_status_okay_s_length 6 + #define F_status_okay_block_s_length 12 + #define F_status_okay_eoa_s_length 10 + #define F_status_okay_eof_s_length 10 + #define F_status_okay_eol_s_length 10 + #define F_status_okay_eos_s_length 10 + #define F_status_okay_not_s_length 10 + #define F_status_okay_start_s_length 12 + #define F_status_okay_stop_s_length 11 + #define F_status_abort_s_length 7 + #define F_status_abort_not_s_length 11 + #define F_status_absolute_s_length 10 + #define F_status_absolute_not_s_length 14 + #define F_status_add_s_length 5 + #define F_status_add_not_s_length 9 + #define F_status_address_s_length 9 + #define F_status_address_not_s_length 13 + #define F_status_again_s_length 7 + #define F_status_again_not_s_length 11 + #define F_status_all_s_length 5 + #define F_status_all_not_s_length 9 + #define F_status_array_s_length 7 + #define F_status_array_not_s_length 11 + #define F_status_array_too_large_s_length 17 + #define F_status_array_too_small_s_length 17 + #define F_status_ascii_s_length 7 + #define F_status_ascii_not_s_length 11 + #define F_status_atomic_s_length 8 + #define F_status_atomic_not_s_length 12 + #define F_status_available_s_length 11 + #define F_status_available_not_s_length 15 + #define F_status_available_not_address_s_length 23 + #define F_status_available_not_buffer_s_length 22 + #define F_status_available_not_device_s_length 22 + #define F_status_available_not_pipe_s_length 20 + #define F_status_available_not_port_s_length 20 + #define F_status_available_not_process_s_length 23 + #define F_status_available_not_socket_s_length 22 + #define F_status_base_s_length 6 + #define F_status_base_not_s_length 10 + #define F_status_begin_s_length 7 + #define F_status_begin_not_s_length 11 + #define F_status_block_s_length 7 + #define F_status_block_not_s_length 11 + #define F_status_body_s_length 6 + #define F_status_body_not_s_length 10 + #define F_status_bottom_s_length 8 + #define F_status_bottom_not_s_length 12 + #define F_status_bound_s_length 7 + #define F_status_bound_not_s_length 11 + #define F_status_break_s_length 7 + #define F_status_break_not_s_length 11 + #define F_status_buffer_s_length 8 + #define F_status_buffer_not_s_length 12 + #define F_status_buffer_overflow_s_length 17 + #define F_status_buffer_too_large_s_length 18 + #define F_status_buffer_too_small_s_length 18 + #define F_status_buffer_underflow_s_length 18 + #define F_status_busy_s_length 6 + #define F_status_busy_address_s_length 14 + #define F_status_busy_buffer_s_length 13 + #define F_status_busy_device_s_length 13 + #define F_status_busy_not_s_length 10 + #define F_status_busy_pipe_s_length 11 + #define F_status_busy_port_s_length 11 + #define F_status_busy_process_s_length 14 + #define F_status_busy_socket_s_length 13 + #define F_status_call_s_length 6 + #define F_status_call_not_s_length 10 + #define F_status_capability_s_length 12 + #define F_status_capability_not_s_length 16 + #define F_status_character_s_length 11 + #define F_status_character_not_s_length 15 + #define F_status_child_s_length 7 + #define F_status_child_not_s_length 11 + #define F_status_complete_s_length 10 + #define F_status_complete_not_s_length 14 + #define F_status_complete_not_utf_s_length 18 + #define F_status_complete_not_utf_block_s_length 24 + #define F_status_complete_not_utf_eoa_s_length 22 + #define F_status_complete_not_utf_eof_s_length 22 + #define F_status_complete_not_utf_eol_s_length 22 + #define F_status_complete_not_utf_eos_s_length 22 + #define F_status_complete_not_utf_start_s_length 24 + #define F_status_complete_not_utf_stop_s_length 23 + #define F_status_connect_s_length 9 + #define F_status_connect_not_s_length 13 + #define F_status_connect_refuse_s_length 16 + #define F_status_connect_reset_s_length 15 + #define F_status_container_s_length 11 + #define F_status_container_not_s_length 15 + #define F_status_content_s_length 9 + #define F_status_content_not_s_length 13 + #define F_status_continue_s_length 10 + #define F_status_continue_not_s_length 14 + #define F_status_control_s_length 9 + #define F_status_control_not_s_length 13 + #define F_status_control_group_s_length 15 + #define F_status_control_group_not_s_length 19 + #define F_status_critical_s_length 10 + #define F_status_critical_not_s_length 14 + #define F_status_data_s_length 6 + #define F_status_data_not_s_length 10 + #define F_status_data_not_block_s_length 16 + #define F_status_data_not_eoa_s_length 14 + #define F_status_data_not_eof_s_length 14 + #define F_status_data_not_eol_s_length 14 + #define F_status_data_not_eos_s_length 14 + #define F_status_data_not_start_s_length 16 + #define F_status_data_not_stop_s_length 15 + #define F_status_dead_s_length 6 + #define F_status_dead_not_s_length 10 + #define F_status_deadlock_s_length 10 + #define F_status_deadlock_not_s_length 14 + #define F_status_debug_s_length 7 + #define F_status_debug_not_s_length 11 + #define F_status_descriptor_s_length 12 + #define F_status_descriptor_not_s_length 16 + #define F_status_desire_s_length 8 + #define F_status_desire_not_s_length 12 + #define F_status_device_s_length 8 + #define F_status_device_not_s_length 12 + #define F_status_discard_s_length 9 + #define F_status_discard_not_s_length 13 + #define F_status_disable_s_length 9 + #define F_status_disable_not_s_length 13 + #define F_status_domain_s_length 8 + #define F_status_domain_not_s_length 12 + #define F_status_done_s_length 6 + #define F_status_done_not_s_length 10 + #define F_status_drop_s_length 6 + #define F_status_drop_not_s_length 10 + #define F_status_dummy_s_length 7 + #define F_status_dummy_not_s_length 11 + #define F_status_empty_s_length 7 + #define F_status_empty_not_s_length 11 + #define F_status_enable_s_length 8 + #define F_status_enable_not_s_length 12 + #define F_status_encoding_s_length 10 + #define F_status_encoding_not_s_length 14 + #define F_status_end_s_length 5 + #define F_status_end_not_s_length 10 + #define F_status_end_not_block_s_length 15 + #define F_status_end_not_eoa_s_length 13 + #define F_status_end_not_eof_s_length 13 + #define F_status_end_not_eol_s_length 13 + #define F_status_end_not_eos_s_length 13 + #define F_status_end_not_start_s_length 15 + #define F_status_end_not_stop_s_length 14 + #define F_status_end_not_group_s_length 15 + #define F_status_end_not_group_block_s_length 21 + #define F_status_end_not_group_eoa_s_length 19 + #define F_status_end_not_group_eof_s_length 19 + #define F_status_end_not_group_eol_s_length 19 + #define F_status_end_not_group_eos_s_length 19 + #define F_status_end_not_group_start_s_length 21 + #define F_status_end_not_group_stop_s_length 20 + #define F_status_end_not_nest_s_length 14 + #define F_status_end_not_nest_block_s_length 20 + #define F_status_end_not_nest_eoa_s_length 18 + #define F_status_end_not_nest_eof_s_length 18 + #define F_status_end_not_nest_eol_s_length 18 + #define F_status_end_not_nest_eos_s_length 18 + #define F_status_end_not_nest_start_s_length 20 + #define F_status_end_not_nest_stop_s_length 19 + #define F_status_endian_s_length 8 + #define F_status_endian_big_s_length 12 + #define F_status_endian_little_s_length 19 + #define F_status_endian_not_s_length 12 + #define F_status_enter_s_length 7 + #define F_status_enter_not_s_length 11 + #define F_status_eoa_s_length 5 + #define F_status_eoa_not_s_length 9 + #define F_status_eof_s_length 5 + #define F_status_eof_not_s_length 9 + #define F_status_eol_s_length 5 + #define F_status_eol_not_s_length 9 + #define F_status_eos_s_length 5 + #define F_status_eos_not_s_length 9 + #define F_status_error_s_length 7 + #define F_status_error_not_s_length 11 + #define F_status_execute_s_length 9 + #define F_status_execute_not_s_length 13 + #define F_status_exist_s_length 7 + #define F_status_exist_not_s_length 11 + #define F_status_exit_s_length 6 + #define F_status_exit_not_s_length 10 + #define F_status_failure_s_length 9 + #define F_status_failure_not_s_length 13 + #define F_status_family_s_length 8 + #define F_status_family_not_s_length 12 + #define F_status_fifo_s_length 6 + #define F_status_fifo_not_s_length 10 + #define F_status_fine_s_length 6 + #define F_status_fine_not_s_length 10 + #define F_status_first_s_length 7 + #define F_status_first_not_s_length 11 + #define F_status_footer_s_length 8 + #define F_status_footer_not_s_length 12 + #define F_status_fork_s_length 6 + #define F_status_fork_not_s_length 10 + #define F_status_format_s_length 8 + #define F_status_format_not_s_length 12 + #define F_status_found_s_length 7 + #define F_status_found_not_s_length 11 + #define F_status_full_s_length 6 + #define F_status_full_not_s_length 10 + #define F_status_group_s_length 7 + #define F_status_group_not_s_length 11 + #define F_status_halt_s_length 6 + #define F_status_halt_not_s_length 10 + #define F_status_header_s_length 8 + #define F_status_header_not_s_length 12 + #define F_status_help_s_length 6 + #define F_status_help_not_s_length 10 + #define F_status_ignore_s_length 8 + #define F_status_ignore_not_s_length 12 + #define F_status_implement_s_length 11 + #define F_status_implement_not_s_length 15 + #define F_status_input_s_length 7 + #define F_status_input_not_s_length 11 + #define F_status_input_output_s_length 14 + #define F_status_interrupt_s_length 11 + #define F_status_interrupt_not_s_length 15 + #define F_status_keep_s_length 6 + #define F_status_keep_not_s_length 10 + #define F_status_known_s_length 7 + #define F_status_known_not_s_length 11 + #define F_status_last_s_length 6 + #define F_status_last_not_s_length 10 + #define F_status_limit_s_length 7 + #define F_status_limit_not_s_length 11 + #define F_status_link_s_length 6 + #define F_status_link_not_s_length 10 + #define F_status_live_s_length 6 + #define F_status_live_not_s_length 10 + #define F_status_load_s_length 6 + #define F_status_load_not_s_length 10 + #define F_status_local_s_length 7 + #define F_status_local_not_s_length 11 + #define F_status_lock_s_length 6 + #define F_status_lock_mutex_s_length 12 + #define F_status_lock_mutex_not_s_length 16 + #define F_status_lock_not_s_length 10 + #define F_status_lock_read_s_length 11 + #define F_status_lock_read_not_s_length 15 + #define F_status_lock_spin_s_length 11 + #define F_status_lock_spin_not_s_length 15 + #define F_status_lock_write_s_length 12 + #define F_status_lock_write_not_s_length 16 + #define F_status_loop_s_length 6 + #define F_status_loop_not_s_length 10 + #define F_status_maximum_s_length 9 + #define F_status_maximum_not_s_length 13 + #define F_status_maybe_s_length 7 + #define F_status_maybe_not_s_length 11 + #define F_status_memory_s_length 8 + #define F_status_memory_not_s_length 12 + #define F_status_message_s_length 9 + #define F_status_message_not_s_length 13 + #define F_status_middle_s_length 8 + #define F_status_middle_not_s_length 12 + #define F_status_minimum_s_length 9 + #define F_status_minimum_not_s_length 13 + #define F_status_minor_s_length 7 + #define F_status_minor_not_s_length 11 + #define F_status_moderate_s_length 10 + #define F_status_moderate_not_s_length 14 + #define F_status_mount_s_length 7 + #define F_status_mount_not_s_length 11 + #define F_status_name_s_length 6 + #define F_status_name_not_s_length 10 + #define F_status_need_s_length 6 + #define F_status_need_not_s_length 10 + #define F_status_network_s_length 9 + #define F_status_network_busy_s_length 14 + #define F_status_network_busy_not_s_length 18 + #define F_status_network_client_s_length 16 + #define F_status_network_client_not_s_length 20 + #define F_status_network_device_s_length 16 + #define F_status_network_device_not_s_length 20 + #define F_status_network_found_s_length 15 + #define F_status_network_found_not_s_length 19 + #define F_status_network_lost_s_length 14 + #define F_status_network_lost_not_s_length 18 + #define F_status_network_not_s_length 13 + #define F_status_network_reach_s_length 15 + #define F_status_network_reach_client_s_length 22 + #define F_status_network_reach_client_not_s_length 26 + #define F_status_network_reach_not_s_length 19 + #define F_status_network_reach_server_s_length 22 + #define F_status_network_reach_server_not_s_length 26 + #define F_status_network_server_s_length 16 + #define F_status_network_server_not_s_length 20 + #define F_status_network_time_s_length 14 + #define F_status_network_time_not_s_length 18 + #define F_status_network_version_four_s_length 22 + #define F_status_network_version_four_not_s_length 26 + #define F_status_network_version_six_s_length 21 + #define F_status_network_version_six_not_s_length 25 + #define F_status_number_s_length 8 + #define F_status_number_decimal_s_length 16 + #define F_status_number_decimal_not_s_length 20 + #define F_status_number_divide_by_zero_s_length 23 + #define F_status_number_negative_s_length 17 + #define F_status_number_negative_not_s_length 21 + #define F_status_number_not_s_length 12 + #define F_status_number_overflow_s_length 17 + #define F_status_number_positive_s_length 17 + #define F_status_number_positive_not_s_length 21 + #define F_status_number_too_large_s_length 18 + #define F_status_number_too_small_s_length 18 + #define F_status_number_underflow_s_length 18 + #define F_status_number_whole_s_length 14 + #define F_status_number_whole_not_s_length 18 + #define F_status_number_zero_s_length 13 + #define F_status_number_zero_not_s_length 17 + #define F_status_next_s_length 6 + #define F_status_next_not_s_length 10 + #define F_status_nice_s_length 6 + #define F_status_nice_not_s_length 10 + #define F_status_no_s_length 4 + #define F_status_no_not_s_length 8 + #define F_status_none_s_length 6 + #define F_status_none_not_s_length 10 + #define F_status_object_s_length 8 + #define F_status_object_not_s_length 12 + #define F_status_once_s_length 6 + #define F_status_once_not_s_length 10 + #define F_status_option_s_length 8 + #define F_status_option_not_s_length 12 + #define F_status_output_s_length 8 + #define F_status_output_not_s_length 12 + #define F_status_packet_s_length 8 + #define F_status_packet_not_s_length 12 + #define F_status_packet_too_large_s_length 18 + #define F_status_packet_too_large_not_s_length 22 + #define F_status_packet_too_small_s_length 18 + #define F_status_packet_too_small_not_s_length 22 + #define F_status_parameter_s_length 11 + #define F_status_parameter_not_s_length 15 + #define F_status_parent_s_length 8 + #define F_status_parent_not_s_length 12 + #define F_status_partial_s_length 9 + #define F_status_partial_not_s_length 13 + #define F_status_payload_s_length 9 + #define F_status_payload_not_s_length 13 + #define F_status_payload_too_large_s_length 19 + #define F_status_payload_too_large_not_s_length 23 + #define F_status_payload_too_small_s_length 19 + #define F_status_payload_too_small_not_s_length 23 + #define F_status_pipe_s_length 6 + #define F_status_pipe_not_s_length 10 + #define F_status_port_s_length 6 + #define F_status_port_not_s_length 10 + #define F_status_previous_s_length 10 + #define F_status_previous_not_s_length 14 + #define F_status_processor_s_length 11 + #define F_status_processor_not_s_length 15 + #define F_status_progress_s_length 10 + #define F_status_progress_not_s_length 14 + #define F_status_prohibited_s_length 12 + #define F_status_prohibited_not_s_length 16 + #define F_status_property_s_length 10 + #define F_status_property_not_s_length 14 + #define F_status_protocol_s_length 10 + #define F_status_protocol_not_s_length 14 + #define F_status_range_s_length 7 + #define F_status_range_not_s_length 11 + #define F_status_read_s_length 6 + #define F_status_read_not_s_length 10 + #define F_status_read_only_s_length 11 + #define F_status_ready_s_length 7 + #define F_status_ready_not_s_length 11 + #define F_status_receive_s_length 9 + #define F_status_receive_not_s_length 13 + #define F_status_recover_s_length 9 + #define F_status_recover_not_s_length 13 + #define F_status_recurse_s_length 9 + #define F_status_recurse_not_s_length 13 + #define F_status_refresh_s_length 9 + #define F_status_refresh_not_s_length 13 + #define F_status_regular_s_length 9 + #define F_status_regular_not_s_length 13 + #define F_status_relative_s_length 10 + #define F_status_relative_not_s_length 14 + #define F_status_reload_s_length 8 + #define F_status_reload_not_s_length 12 + #define F_status_remote_s_length 8 + #define F_status_remote_not_s_length 12 + #define F_status_remove_s_length 8 + #define F_status_remove_not_s_length 12 + #define F_status_repeat_s_length 8 + #define F_status_repeat_not_s_length 12 + #define F_status_require_s_length 9 + #define F_status_require_not_s_length 13 + #define F_status_resource_s_length 10 + #define F_status_resource_not_s_length 14 + #define F_status_restart_s_length 9 + #define F_status_restart_not_s_length 13 + #define F_status_restore_s_length 9 + #define F_status_restore_not_s_length 13 + #define F_status_revert_s_length 8 + #define F_status_revert_not_s_length 12 + #define F_status_schedule_s_length 10 + #define F_status_schedule_not_s_length 14 + #define F_status_search_s_length 8 + #define F_status_search_not_s_length 12 + #define F_status_send_s_length 6 + #define F_status_send_not_s_length 10 + #define F_status_size_s_length 6 + #define F_status_size_not_s_length 10 + #define F_status_signal_s_length 8 + #define F_status_signal_not_s_length 12 + #define F_status_skip_s_length 6 + #define F_status_skip_not_s_length 10 + #define F_status_some_s_length 6 + #define F_status_some_not_s_length 10 + #define F_status_space_s_length 7 + #define F_status_space_not_s_length 11 + #define F_status_start_s_length 7 + #define F_status_start_not_s_length 11 + #define F_status_status_s_length 8 + #define F_status_status_not_s_length 12 + #define F_status_stop_s_length 6 + #define F_status_stop_not_s_length 10 + #define F_status_store_s_length 7 + #define F_status_store_not_s_length 11 + #define F_status_stream_s_length 8 + #define F_status_stream_not_s_length 12 + #define F_status_string_s_length 8 + #define F_status_string_not_s_length 12 + #define F_status_string_too_large_s_length 18 + #define F_status_string_too_small_s_length 18 + #define F_status_success_s_length 9 + #define F_status_success_not_s_length 13 + #define F_status_support_s_length 9 + #define F_status_support_not_s_length 13 + #define F_status_syntax_s_length 8 + #define F_status_syntax_not_s_length 12 + #define F_status_terminate_s_length 11 + #define F_status_terminate_not_s_length 15 + #define F_status_test_s_length 6 + #define F_status_test_not_s_length 10 + #define F_status_thread_s_length 8 + #define F_status_thread_not_s_length 12 + #define F_status_time_s_length 6 + #define F_status_time_not_s_length 10 + #define F_status_time_out_s_length 10 + #define F_status_too_large_s_length 11 + #define F_status_too_small_s_length 11 + #define F_status_top_s_length 5 + #define F_status_top_not_s_length 9 + #define F_status_type_s_length 6 + #define F_status_type_not_s_length 10 + #define F_status_unload_s_length 8 + #define F_status_unload_not_s_length 12 + #define F_status_user_s_length 6 + #define F_status_user_not_s_length 10 + #define F_status_utf_s_length 5 + #define F_status_utf_fragment_s_length 14 + #define F_status_utf_fragment_not_s_length 18 + #define F_status_utf_not_s_length 9 + #define F_status_valid_s_length 7 + #define F_status_valid_not_s_length 11 + #define F_status_value_s_length 7 + #define F_status_value_not_s_length 11 + #define F_status_wait_s_length 6 + #define F_status_wait_not_s_length 10 + #define F_status_want_s_length 6 + #define F_status_want_not_s_length 10 + #define F_status_warning_s_length 9 + #define F_status_warning_not_s_length 13 + #define F_status_wish_s_length 6 + #define F_status_wish_not_s_length 10 + #define F_status_world_s_length 7 + #define F_status_world_not_s_length 11 + #define F_status_write_s_length 7 + #define F_status_write_not_s_length 11 + #define F_status_write_only_s_length 12 + #define F_status_yes_s_length 5 + #define F_status_yes_not_s_length 9 extern const f_string_static_t f_status_okay_s; extern const f_string_static_t f_status_okay_block_s; @@ -975,10 +1217,23 @@ extern "C" { extern const f_string_static_t f_status_again_not_s; extern const f_string_static_t f_status_all_s; extern const f_string_static_t f_status_all_not_s; + extern const f_string_static_t f_status_array_s; + extern const f_string_static_t f_status_array_not_s; + extern const f_string_static_t f_status_array_too_large_s; + extern const f_string_static_t f_status_array_too_small_s; extern const f_string_static_t f_status_ascii_s; extern const f_string_static_t f_status_ascii_not_s; extern const f_string_static_t f_status_atomic_s; extern const f_string_static_t f_status_atomic_not_s; + extern const f_string_static_t f_status_available_s; + extern const f_string_static_t f_status_available_not_s; + extern const f_string_static_t f_status_available_not_address_s; + extern const f_string_static_t f_status_available_not_buffer_s; + extern const f_string_static_t f_status_available_not_device_s; + extern const f_string_static_t f_status_available_not_pipe_s; + extern const f_string_static_t f_status_available_not_port_s; + extern const f_string_static_t f_status_available_not_process_s; + extern const f_string_static_t f_status_available_not_socket_s; extern const f_string_static_t f_status_base_s; extern const f_string_static_t f_status_base_not_s; extern const f_string_static_t f_status_begin_s; @@ -993,6 +1248,21 @@ extern "C" { extern const f_string_static_t f_status_bound_not_s; extern const f_string_static_t f_status_break_s; extern const f_string_static_t f_status_break_not_s; + extern const f_string_static_t f_status_buffer_s; + extern const f_string_static_t f_status_buffer_not_s; + extern const f_string_static_t f_status_buffer_overflow_s; + extern const f_string_static_t f_status_buffer_too_large_s; + extern const f_string_static_t f_status_buffer_too_small_s; + extern const f_string_static_t f_status_buffer_underflow_s; + extern const f_string_static_t f_status_busy_s; + extern const f_string_static_t f_status_busy_address_s; + extern const f_string_static_t f_status_busy_buffer_s; + extern const f_string_static_t f_status_busy_device_s; + extern const f_string_static_t f_status_busy_not_s; + extern const f_string_static_t f_status_busy_pipe_s; + extern const f_string_static_t f_status_busy_port_s; + extern const f_string_static_t f_status_busy_process_s; + extern const f_string_static_t f_status_busy_socket_s; extern const f_string_static_t f_status_call_s; extern const f_string_static_t f_status_call_not_s; extern const f_string_static_t f_status_capability_s; @@ -1003,6 +1273,14 @@ extern "C" { extern const f_string_static_t f_status_child_not_s; extern const f_string_static_t f_status_complete_s; extern const f_string_static_t f_status_complete_not_s; + extern const f_string_static_t f_status_complete_not_utf_s; + extern const f_string_static_t f_status_complete_not_utf_block_s; + extern const f_string_static_t f_status_complete_not_utf_eoa_s; + extern const f_string_static_t f_status_complete_not_utf_eof_s; + extern const f_string_static_t f_status_complete_not_utf_eol_s; + extern const f_string_static_t f_status_complete_not_utf_eos_s; + extern const f_string_static_t f_status_complete_not_utf_start_s; + extern const f_string_static_t f_status_complete_not_utf_stop_s; extern const f_string_static_t f_status_connect_s; extern const f_string_static_t f_status_connect_not_s; extern const f_string_static_t f_status_connect_refuse_s; @@ -1019,10 +1297,21 @@ extern "C" { extern const f_string_static_t f_status_control_group_not_s; extern const f_string_static_t f_status_critical_s; extern const f_string_static_t f_status_critical_not_s; + extern const f_string_static_t f_status_data_s; + extern const f_string_static_t f_status_data_not_s; + extern const f_string_static_t f_status_data_not_block_s; + extern const f_string_static_t f_status_data_not_eoa_s; + extern const f_string_static_t f_status_data_not_eof_s; + extern const f_string_static_t f_status_data_not_eol_s; + extern const f_string_static_t f_status_data_not_eos_s; + extern const f_string_static_t f_status_data_not_start_s; + extern const f_string_static_t f_status_data_not_stop_s; extern const f_string_static_t f_status_dead_s; extern const f_string_static_t f_status_dead_not_s; extern const f_string_static_t f_status_deadlock_s; extern const f_string_static_t f_status_deadlock_not_s; + extern const f_string_static_t f_status_debug_s; + extern const f_string_static_t f_status_debug_not_s; extern const f_string_static_t f_status_descriptor_s; extern const f_string_static_t f_status_descriptor_not_s; extern const f_string_static_t f_status_desire_s; @@ -1049,6 +1338,31 @@ extern "C" { extern const f_string_static_t f_status_encoding_not_s; extern const f_string_static_t f_status_end_s; extern const f_string_static_t f_status_end_not_s; + extern const f_string_static_t f_status_end_not_block_s; + extern const f_string_static_t f_status_end_not_eoa_s; + extern const f_string_static_t f_status_end_not_eof_s; + extern const f_string_static_t f_status_end_not_eol_s; + extern const f_string_static_t f_status_end_not_eos_s; + extern const f_string_static_t f_status_end_not_start_s; + extern const f_string_static_t f_status_end_not_stop_s; + extern const f_string_static_t f_status_end_not_group_s; + extern const f_string_static_t f_status_end_not_group_block_s; + extern const f_string_static_t f_status_end_not_group_eoa_s; + extern const f_string_static_t f_status_end_not_group_eof_s; + extern const f_string_static_t f_status_end_not_group_eol_s; + extern const f_string_static_t f_status_end_not_group_eos_s; + extern const f_string_static_t f_status_end_not_group_start_s; + extern const f_string_static_t f_status_end_not_group_stop_s; + extern const f_string_static_t f_status_end_not_nest_s; + extern const f_string_static_t f_status_end_not_nest_block_s; + extern const f_string_static_t f_status_end_not_nest_eoa_s; + extern const f_string_static_t f_status_end_not_nest_eof_s; + extern const f_string_static_t f_status_end_not_nest_eol_s; + extern const f_string_static_t f_status_end_not_nest_eos_s; + extern const f_string_static_t f_status_end_not_nest_start_s; + extern const f_string_static_t f_status_end_not_nest_stop_s; + extern const f_string_static_t f_status_end_s; + extern const f_string_static_t f_status_end_not_s; extern const f_string_static_t f_status_endian_s; extern const f_string_static_t f_status_endian_big_s; extern const f_string_static_t f_status_endian_little_s; @@ -1063,6 +1377,8 @@ extern "C" { extern const f_string_static_t f_status_eol_not_s; extern const f_string_static_t f_status_eos_s; extern const f_string_static_t f_status_eos_not_s; + extern const f_string_static_t f_status_error_s; + extern const f_string_static_t f_status_error_not_s; extern const f_string_static_t f_status_execute_s; extern const f_string_static_t f_status_execute_not_s; extern const f_string_static_t f_status_exist_s; @@ -1075,6 +1391,8 @@ extern "C" { extern const f_string_static_t f_status_family_not_s; extern const f_string_static_t f_status_fifo_s; extern const f_string_static_t f_status_fifo_not_s; + extern const f_string_static_t f_status_fine_s; + extern const f_string_static_t f_status_fine_not_s; extern const f_string_static_t f_status_first_s; extern const f_string_static_t f_status_first_not_s; extern const f_string_static_t f_status_footer_s; @@ -1154,6 +1472,32 @@ extern "C" { extern const f_string_static_t f_status_name_not_s; extern const f_string_static_t f_status_need_s; extern const f_string_static_t f_status_need_not_s; + extern const f_string_static_t f_status_network_s; + extern const f_string_static_t f_status_network_busy_s; + extern const f_string_static_t f_status_network_busy_not_s; + extern const f_string_static_t f_status_network_client_s; + extern const f_string_static_t f_status_network_client_not_s; + extern const f_string_static_t f_status_network_device_s; + extern const f_string_static_t f_status_network_device_not_s; + extern const f_string_static_t f_status_network_found_s; + extern const f_string_static_t f_status_network_found_not_s; + extern const f_string_static_t f_status_network_lost_s; + extern const f_string_static_t f_status_network_lost_not_s; + extern const f_string_static_t f_status_network_not_s; + extern const f_string_static_t f_status_network_reach_s; + extern const f_string_static_t f_status_network_reach_client_s; + extern const f_string_static_t f_status_network_reach_client_not_s; + extern const f_string_static_t f_status_network_reach_not_s; + extern const f_string_static_t f_status_network_reach_server_s; + extern const f_string_static_t f_status_network_reach_server_not_s; + extern const f_string_static_t f_status_network_server_s; + extern const f_string_static_t f_status_network_server_not_s; + extern const f_string_static_t f_status_network_time_s; + extern const f_string_static_t f_status_network_time_not_s; + extern const f_string_static_t f_status_network_version_four_s; + extern const f_string_static_t f_status_network_version_four_not_s; + extern const f_string_static_t f_status_network_version_six_s; + extern const f_string_static_t f_status_network_version_six_not_s; extern const f_string_static_t f_status_next_s; extern const f_string_static_t f_status_next_not_s; extern const f_string_static_t f_status_nice_s; @@ -1162,6 +1506,23 @@ extern "C" { extern const f_string_static_t f_status_no_not_s; extern const f_string_static_t f_status_none_s; extern const f_string_static_t f_status_none_not_s; + extern const f_string_static_t f_status_number_s; + extern const f_string_static_t f_status_number_decimal_s; + extern const f_string_static_t f_status_number_decimal_not_s; + extern const f_string_static_t f_status_number_divide_by_zero_s; + extern const f_string_static_t f_status_number_negative_s; + extern const f_string_static_t f_status_number_negative_not_s; + extern const f_string_static_t f_status_number_not_s; + extern const f_string_static_t f_status_number_overflow_s; + extern const f_string_static_t f_status_number_positive_s; + extern const f_string_static_t f_status_number_positive_not_s; + extern const f_string_static_t f_status_number_too_large_s; + extern const f_string_static_t f_status_number_too_small_s; + extern const f_string_static_t f_status_number_underflow_s; + extern const f_string_static_t f_status_number_whole_s; + extern const f_string_static_t f_status_number_whole_not_s; + extern const f_string_static_t f_status_number_zero_s; + extern const f_string_static_t f_status_number_zero_not_s; extern const f_string_static_t f_status_object_s; extern const f_string_static_t f_status_object_not_s; extern const f_string_static_t f_status_once_s; @@ -1308,6 +1669,8 @@ extern "C" { extern const f_string_static_t f_status_wait_not_s; extern const f_string_static_t f_status_want_s; extern const f_string_static_t f_status_want_not_s; + extern const f_string_static_t f_status_warning_s; + extern const f_string_static_t f_status_warning_not_s; extern const f_string_static_t f_status_wish_s; extern const f_string_static_t f_status_wish_not_s; extern const f_string_static_t f_status_world_s; @@ -1318,401 +1681,6 @@ extern "C" { extern const f_string_static_t f_status_yes_s; extern const f_string_static_t f_status_yes_not_s; - // Return. - #define F_status_debug_s "F_debug" - #define F_status_debug_not_s "F_debug_not" - #define F_status_error_s "F_error" - #define F_status_error_not_s "F_error_not" - #define F_status_fine_s "F_fine" - #define F_status_fine_not_s "F_fine_not" - #define F_status_warning_s "F_warning" - #define F_status_warning_not_s "F_warning_not" - - #define F_status_debug_s_length 7 - #define F_status_debug_not_s_length 11 - #define F_status_error_s_length 7 - #define F_status_error_not_s_length 11 - #define F_status_fine_s_length 6 - #define F_status_fine_not_s_length 10 - #define F_status_warning_s_length 9 - #define F_status_warning_not_s_length 13 - - extern const f_string_static_t f_status_debug_s; - extern const f_string_static_t f_status_debug_not_s; - extern const f_string_static_t f_status_error_s; - extern const f_string_static_t f_status_error_not_s; - extern const f_string_static_t f_status_fine_s; - extern const f_string_static_t f_status_fine_not_s; - extern const f_string_static_t f_status_warning_s; - extern const f_string_static_t f_status_warning_not_s; - - // Array. - #define F_status_array_s "F_array" - #define F_status_array_not_s "F_array_not" - #define F_status_array_too_large_s "F_array_too_large" - #define F_status_array_too_small_s "F_array_too_small" - - #define F_status_array_s_length 7 - #define F_status_array_not_s_length 11 - #define F_status_array_too_large_s_length 17 - #define F_status_array_too_small_s_length 17 - - extern const f_string_static_t f_status_array_s; - extern const f_string_static_t f_status_array_not_s; - extern const f_string_static_t f_status_array_too_large_s; - extern const f_string_static_t f_status_array_too_small_s; - - // Available. - #define F_status_available_s "F_available" - #define F_status_available_not_s "F_available_not" - #define F_status_available_not_address_s "F_available_not_address" - #define F_status_available_not_buffer_s "F_available_not_buffer" - #define F_status_available_not_device_s "F_available_not_device" - #define F_status_available_not_pipe_s "F_available_not_pipe" - #define F_status_available_not_port_s "F_available_not_port" - #define F_status_available_not_process_s "F_available_not_process" - #define F_status_available_not_socket_s "F_available_not_socket" - - #define F_status_available_s_length 11 - #define F_status_available_not_s_length 15 - #define F_status_available_not_address_s_length 23 - #define F_status_available_not_buffer_s_length 22 - #define F_status_available_not_device_s_length 22 - #define F_status_available_not_pipe_s_length 20 - #define F_status_available_not_port_s_length 20 - #define F_status_available_not_process_s_length 23 - #define F_status_available_not_socket_s_length 22 - - extern const f_string_static_t f_status_available_s; - extern const f_string_static_t f_status_available_not_s; - extern const f_string_static_t f_status_available_not_address_s; - extern const f_string_static_t f_status_available_not_buffer_s; - extern const f_string_static_t f_status_available_not_device_s; - extern const f_string_static_t f_status_available_not_pipe_s; - extern const f_string_static_t f_status_available_not_port_s; - extern const f_string_static_t f_status_available_not_process_s; - extern const f_string_static_t f_status_available_not_socket_s; - - // Busy. - #define F_status_busy_s "F_busy" - #define F_status_busy_address_s "F_busy_address" - #define F_status_busy_buffer_s "F_busy_buffer" - #define F_status_busy_device_s "F_busy_device" - #define F_status_busy_not_s "F_busy_not" - #define F_status_busy_pipe_s "F_busy_pipe" - #define F_status_busy_port_s "F_busy_port" - #define F_status_busy_process_s "F_busy_process" - #define F_status_busy_socket_s "F_busy_socket" - - #define F_status_busy_s_length 6 - #define F_status_busy_address_s_length 14 - #define F_status_busy_buffer_s_length 13 - #define F_status_busy_device_s_length 13 - #define F_status_busy_not_s_length 10 - #define F_status_busy_pipe_s_length 11 - #define F_status_busy_port_s_length 11 - #define F_status_busy_process_s_length 14 - #define F_status_busy_socket_s_length 13 - - extern const f_string_static_t f_status_busy_s; - extern const f_string_static_t f_status_busy_address_s; - extern const f_string_static_t f_status_busy_buffer_s; - extern const f_string_static_t f_status_busy_device_s; - extern const f_string_static_t f_status_busy_not_s; - extern const f_string_static_t f_status_busy_pipe_s; - extern const f_string_static_t f_status_busy_port_s; - extern const f_string_static_t f_status_busy_process_s; - extern const f_string_static_t f_status_busy_socket_s; - - // Network. - #define F_status_network_s "F_network" - #define F_status_network_busy_s "F_network_busy" - #define F_status_network_busy_not_s "F_network_busy_not" - #define F_status_network_client_s "F_network_client" - #define F_status_network_client_not_s "F_network_client_not" - #define F_status_network_device_s "F_network_device" - #define F_status_network_device_not_s "F_network_device_not" - #define F_status_network_found_s "F_network_found" - #define F_status_network_found_not_s "F_network_found_not" - #define F_status_network_lost_s "F_network_lost" - #define F_status_network_lost_not_s "F_network_lost_not" - #define F_status_network_not_s "F_network_not" - #define F_status_network_reach_s "F_network_reach" - #define F_status_network_reach_client_s "F_network_reach_client" - #define F_status_network_reach_client_not_s "F_network_reach_client_not" - #define F_status_network_reach_not_s "F_network_reach_not" - #define F_status_network_reach_server_s "F_network_reach_server" - #define F_status_network_reach_server_not_s "F_network_reach_server_not" - #define F_status_network_server_s "F_network_server" - #define F_status_network_server_not_s "F_network_server_not" - #define F_status_network_time_s "F_network_time" - #define F_status_network_time_not_s "F_network_time_not" - #define F_status_network_version_four_s "F_network_version_four" - #define F_status_network_version_four_not_s "F_network_version_four_not" - #define F_status_network_version_six_s "F_network_version_six" - #define F_status_network_version_six_not_s "F_network_version_six_not" - - #define F_status_network_s_length 9 - #define F_status_network_busy_s_length 14 - #define F_status_network_busy_not_s_length 18 - #define F_status_network_client_s_length 16 - #define F_status_network_client_not_s_length 20 - #define F_status_network_device_s_length 16 - #define F_status_network_device_not_s_length 20 - #define F_status_network_found_s_length 15 - #define F_status_network_found_not_s_length 19 - #define F_status_network_lost_s_length 14 - #define F_status_network_lost_not_s_length 18 - #define F_status_network_not_s_length 13 - #define F_status_network_reach_s_length 15 - #define F_status_network_reach_client_s_length 22 - #define F_status_network_reach_client_not_s_length 26 - #define F_status_network_reach_not_s_length 19 - #define F_status_network_reach_server_s_length 22 - #define F_status_network_reach_server_not_s_length 26 - #define F_status_network_server_s_length 16 - #define F_status_network_server_not_s_length 20 - #define F_status_network_time_s_length 14 - #define F_status_network_time_not_s_length 18 - #define F_status_network_version_four_s_length 22 - #define F_status_network_version_four_not_s_length 26 - #define F_status_network_version_six_s_length 21 - #define F_status_network_version_six_not_s_length 25 - - extern const f_string_static_t f_status_network_s; - extern const f_string_static_t f_status_network_busy_s; - extern const f_string_static_t f_status_network_busy_not_s; - extern const f_string_static_t f_status_network_client_s; - extern const f_string_static_t f_status_network_client_not_s; - extern const f_string_static_t f_status_network_device_s; - extern const f_string_static_t f_status_network_device_not_s; - extern const f_string_static_t f_status_network_found_s; - extern const f_string_static_t f_status_network_found_not_s; - extern const f_string_static_t f_status_network_lost_s; - extern const f_string_static_t f_status_network_lost_not_s; - extern const f_string_static_t f_status_network_not_s; - extern const f_string_static_t f_status_network_reach_s; - extern const f_string_static_t f_status_network_reach_client_s; - extern const f_string_static_t f_status_network_reach_client_not_s; - extern const f_string_static_t f_status_network_reach_not_s; - extern const f_string_static_t f_status_network_reach_server_s; - extern const f_string_static_t f_status_network_reach_server_not_s; - extern const f_string_static_t f_status_network_server_s; - extern const f_string_static_t f_status_network_server_not_s; - extern const f_string_static_t f_status_network_time_s; - extern const f_string_static_t f_status_network_time_not_s; - extern const f_string_static_t f_status_network_version_four_s; - extern const f_string_static_t f_status_network_version_four_not_s; - extern const f_string_static_t f_status_network_version_six_s; - extern const f_string_static_t f_status_network_version_six_not_s; - - // Number. - #define F_status_number_s "F_number" - #define F_status_number_decimal_s "F_number_decimal" - #define F_status_number_decimal_not_s "F_number_decimal_not" - #define F_status_number_divide_by_zero_s "F_number_divide_by_zero" - #define F_status_number_negative_s "F_number_negative" - #define F_status_number_negative_not_s "F_number_negative_not" - #define F_status_number_not_s "F_number_not" - #define F_status_number_overflow_s "F_number_overflow" - #define F_status_number_positive_s "F_number_positive" - #define F_status_number_positive_not_s "F_number_positive_not" - #define F_status_number_too_large_s "F_number_too_large" - #define F_status_number_too_small_s "F_number_too_small" - #define F_status_number_underflow_s "F_number_underflow" - #define F_status_number_whole_s "F_number_whole" - #define F_status_number_whole_not_s "F_number_whole_not" - #define F_status_number_zero_s "F_number_zero" - #define F_status_number_zero_not_s "F_number_zero_not" - - #define F_status_number_s_length 8 - #define F_status_number_decimal_s_length 16 - #define F_status_number_decimal_not_s_length 20 - #define F_status_number_divide_by_zero_s_length 23 - #define F_status_number_negative_s_length 17 - #define F_status_number_negative_not_s_length 21 - #define F_status_number_not_s_length 12 - #define F_status_number_overflow_s_length 17 - #define F_status_number_positive_s_length 17 - #define F_status_number_positive_not_s_length 21 - #define F_status_number_too_large_s_length 18 - #define F_status_number_too_small_s_length 18 - #define F_status_number_underflow_s_length 18 - #define F_status_number_whole_s_length 14 - #define F_status_number_whole_not_s_length 18 - #define F_status_number_zero_s_length 13 - #define F_status_number_zero_not_s_length 17 - - extern const f_string_static_t f_status_number_s; - extern const f_string_static_t f_status_number_decimal_s; - extern const f_string_static_t f_status_number_decimal_not_s; - extern const f_string_static_t f_status_number_divide_by_zero_s; - extern const f_string_static_t f_status_number_negative_s; - extern const f_string_static_t f_status_number_negative_not_s; - extern const f_string_static_t f_status_number_not_s; - extern const f_string_static_t f_status_number_overflow_s; - extern const f_string_static_t f_status_number_positive_s; - extern const f_string_static_t f_status_number_positive_not_s; - extern const f_string_static_t f_status_number_too_large_s; - extern const f_string_static_t f_status_number_too_small_s; - extern const f_string_static_t f_status_number_underflow_s; - extern const f_string_static_t f_status_number_whole_s; - extern const f_string_static_t f_status_number_whole_not_s; - extern const f_string_static_t f_status_number_zero_s; - extern const f_string_static_t f_status_number_zero_not_s; - - // Buffer. - #define F_status_buffer_s "F_buffer" - #define F_status_buffer_not_s "F_buffer_not" - #define F_status_buffer_overflow_s "F_buffer_overflow" - #define F_status_buffer_too_large_s "F_buffer_too_large" - #define F_status_buffer_too_small_s "F_buffer_too_small" - #define F_status_buffer_underflow_s "F_buffer_underflow" - #define F_status_complete_not_utf_s "F_complete_not_utf" - #define F_status_complete_not_utf_block_s "F_complete_not_utf_block" - #define F_status_complete_not_utf_eoa_s "F_complete_not_utf_eoa" - #define F_status_complete_not_utf_eof_s "F_complete_not_utf_eof" - #define F_status_complete_not_utf_eol_s "F_complete_not_utf_eol" - #define F_status_complete_not_utf_eos_s "F_complete_not_utf_eos" - #define F_status_complete_not_utf_start_s "F_complete_not_utf_start" - #define F_status_complete_not_utf_stop_s "F_complete_not_utf_stop" - #define F_status_data_s "F_data" - #define F_status_data_not_s "F_data_not" - #define F_status_data_not_block_s "F_data_not_block" - #define F_status_data_not_eoa_s "F_data_not_eoa" - #define F_status_data_not_eof_s "F_data_not_eof" - #define F_status_data_not_eol_s "F_data_not_eol" - #define F_status_data_not_eos_s "F_data_not_eos" - #define F_status_data_not_start_s "F_data_not_start" - #define F_status_data_not_stop_s "F_data_not_stop" - - #define F_status_buffer_s_length 8 - #define F_status_buffer_not_s_length 12 - #define F_status_buffer_overflow_s_length 17 - #define F_status_buffer_too_large_s_length 18 - #define F_status_buffer_too_small_s_length 18 - #define F_status_buffer_underflow_s_length 18 - #define F_status_complete_not_utf_s_length 18 - #define F_status_complete_not_utf_block_s_length 24 - #define F_status_complete_not_utf_eoa_s_length 22 - #define F_status_complete_not_utf_eof_s_length 22 - #define F_status_complete_not_utf_eol_s_length 22 - #define F_status_complete_not_utf_eos_s_length 22 - #define F_status_complete_not_utf_start_s_length 24 - #define F_status_complete_not_utf_stop_s_length 23 - #define F_status_data_s_length 6 - #define F_status_data_not_s_length 10 - #define F_status_data_not_block_s_length 16 - #define F_status_data_not_eoa_s_length 14 - #define F_status_data_not_eof_s_length 14 - #define F_status_data_not_eol_s_length 14 - #define F_status_data_not_eos_s_length 14 - #define F_status_data_not_start_s_length 16 - #define F_status_data_not_stop_s_length 15 - - extern const f_string_static_t f_status_buffer_s; - extern const f_string_static_t f_status_buffer_not_s; - extern const f_string_static_t f_status_buffer_overflow_s; - extern const f_string_static_t f_status_buffer_too_large_s; - extern const f_string_static_t f_status_buffer_too_small_s; - extern const f_string_static_t f_status_buffer_underflow_s; - extern const f_string_static_t f_status_complete_not_utf_s; - extern const f_string_static_t f_status_complete_not_utf_block_s; - extern const f_string_static_t f_status_complete_not_utf_eoa_s; - extern const f_string_static_t f_status_complete_not_utf_eof_s; - extern const f_string_static_t f_status_complete_not_utf_eol_s; - extern const f_string_static_t f_status_complete_not_utf_eos_s; - extern const f_string_static_t f_status_complete_not_utf_start_s; - extern const f_string_static_t f_status_complete_not_utf_stop_s; - extern const f_string_static_t f_status_data_s; - extern const f_string_static_t f_status_data_not_s; - extern const f_string_static_t f_status_data_not_block_s; - extern const f_string_static_t f_status_data_not_eoa_s; - extern const f_string_static_t f_status_data_not_eof_s; - extern const f_string_static_t f_status_data_not_eol_s; - extern const f_string_static_t f_status_data_not_eos_s; - extern const f_string_static_t f_status_data_not_start_s; - extern const f_string_static_t f_status_data_not_stop_s; - - // End. - #define F_status_end_s "F_end" - #define F_status_end_not_s "F_end_not" - #define F_status_end_not_block_s "F_end_not_block" - #define F_status_end_not_eoa_s "F_end_not_eoa" - #define F_status_end_not_eof_s "F_end_not_eof" - #define F_status_end_not_eol_s "F_end_not_eol" - #define F_status_end_not_eos_s "F_end_not_eos" - #define F_status_end_not_start_s "F_end_not_start" - #define F_status_end_not_stop_s "F_end_not_stop" - #define F_status_end_not_group_s "F_end_not_group" - #define F_status_end_not_group_block_s "F_end_not_group_block" - #define F_status_end_not_group_eoa_s "F_end_not_group_eoa" - #define F_status_end_not_group_eof_s "F_end_not_group_eof" - #define F_status_end_not_group_eol_s "F_end_not_group_eol" - #define F_status_end_not_group_eos_s "F_end_not_group_eos" - #define F_status_end_not_group_start_s "F_end_not_group_start" - #define F_status_end_not_group_stop_s "F_end_not_group_stop" - #define F_status_end_not_nest_s "F_end_not_nest" - #define F_status_end_not_nest_block_s "F_end_not_nest_block" - #define F_status_end_not_nest_eoa_s "F_end_not_nest_eoa" - #define F_status_end_not_nest_eof_s "F_end_not_nest_eof" - #define F_status_end_not_nest_eol_s "F_end_not_nest_eol" - #define F_status_end_not_nest_eos_s "F_end_not_nest_eos" - #define F_status_end_not_nest_start_s "F_end_not_nest_start" - #define F_status_end_not_nest_stop_s "F_end_not_nest_stop" - - #define F_status_end_s_length 5 - #define F_status_end_not_s_length 10 - #define F_status_end_not_block_s_length 15 - #define F_status_end_not_eoa_s_length 13 - #define F_status_end_not_eof_s_length 13 - #define F_status_end_not_eol_s_length 13 - #define F_status_end_not_eos_s_length 13 - #define F_status_end_not_start_s_length 15 - #define F_status_end_not_stop_s_length 14 - #define F_status_end_not_group_s_length 15 - #define F_status_end_not_group_block_s_length 21 - #define F_status_end_not_group_eoa_s_length 19 - #define F_status_end_not_group_eof_s_length 19 - #define F_status_end_not_group_eol_s_length 19 - #define F_status_end_not_group_eos_s_length 19 - #define F_status_end_not_group_start_s_length 21 - #define F_status_end_not_group_stop_s_length 20 - #define F_status_end_not_nest_s_length 14 - #define F_status_end_not_nest_block_s_length 20 - #define F_status_end_not_nest_eoa_s_length 18 - #define F_status_end_not_nest_eof_s_length 18 - #define F_status_end_not_nest_eol_s_length 18 - #define F_status_end_not_nest_eos_s_length 18 - #define F_status_end_not_nest_start_s_length 20 - #define F_status_end_not_nest_stop_s_length 19 - - extern const f_string_static_t f_status_end_s; - extern const f_string_static_t f_status_end_not_s; - extern const f_string_static_t f_status_end_not_block_s; - extern const f_string_static_t f_status_end_not_eoa_s; - extern const f_string_static_t f_status_end_not_eof_s; - extern const f_string_static_t f_status_end_not_eol_s; - extern const f_string_static_t f_status_end_not_eos_s; - extern const f_string_static_t f_status_end_not_start_s; - extern const f_string_static_t f_status_end_not_stop_s; - extern const f_string_static_t f_status_end_not_group_s; - extern const f_string_static_t f_status_end_not_group_block_s; - extern const f_string_static_t f_status_end_not_group_eoa_s; - extern const f_string_static_t f_status_end_not_group_eof_s; - extern const f_string_static_t f_status_end_not_group_eol_s; - extern const f_string_static_t f_status_end_not_group_eos_s; - extern const f_string_static_t f_status_end_not_group_start_s; - extern const f_string_static_t f_status_end_not_group_stop_s; - extern const f_string_static_t f_status_end_not_nest_s; - extern const f_string_static_t f_status_end_not_nest_block_s; - extern const f_string_static_t f_status_end_not_nest_eoa_s; - extern const f_string_static_t f_status_end_not_nest_eof_s; - extern const f_string_static_t f_status_end_not_nest_eol_s; - extern const f_string_static_t f_status_end_not_nest_eos_s; - extern const f_string_static_t f_status_end_not_nest_start_s; - extern const f_string_static_t f_status_end_not_nest_stop_s; - // Process. #define F_status_process_s "F_process" #define F_status_process_not_s "F_process_not" diff --git a/level_0/f_status_string/tests/unit/c/test-status_string-to.c b/level_0/f_status_string/tests/unit/c/test-status_string-to.c index ab20648..856177c 100644 --- a/level_0/f_status_string/tests/unit/c/test-status_string-to.c +++ b/level_0/f_status_string/tests/unit/c/test-status_string-to.c @@ -117,10 +117,23 @@ void test__f_status_string_to__works(void **state) { F_again_not, F_all, F_all_not, + F_array, + F_array_not, + F_array_too_large, + F_array_too_small, F_ascii, F_ascii_not, F_atomic, F_atomic_not, + F_available, + F_available_not, + F_available_not_address, + F_available_not_buffer, + F_available_not_device, + F_available_not_pipe, + F_available_not_port, + F_available_not_process, + F_available_not_socket, F_base, F_base_not, F_begin, @@ -135,6 +148,21 @@ void test__f_status_string_to__works(void **state) { F_bound_not, F_break, F_break_not, + F_buffer, + F_buffer_not, + F_buffer_overflow, + F_buffer_too_large, + F_buffer_too_small, + F_buffer_underflow, + F_busy, + F_busy_address, + F_busy_buffer, + F_busy_device, + F_busy_not, + F_busy_pipe, + F_busy_port, + F_busy_process, + F_busy_socket, F_call, F_call_not, F_capability, @@ -145,6 +173,14 @@ void test__f_status_string_to__works(void **state) { F_child_not, F_complete, F_complete_not, + F_complete_not_utf, + F_complete_not_utf_block, + F_complete_not_utf_eoa, + F_complete_not_utf_eof, + F_complete_not_utf_eol, + F_complete_not_utf_eos, + F_complete_not_utf_start, + F_complete_not_utf_stop, F_connect, F_connect_not, F_connect_refuse, @@ -161,10 +197,21 @@ void test__f_status_string_to__works(void **state) { F_control_group_not, F_critical, F_critical_not, + F_data, + F_data_not, + F_data_not_block, + F_data_not_eoa, + F_data_not_eof, + F_data_not_eol, + F_data_not_eos, + F_data_not_start, + F_data_not_stop, F_dead, F_dead_not, F_deadlock, F_deadlock_not, + F_debug, + F_debug_not, F_descriptor, F_descriptor_not, F_desire, @@ -189,6 +236,31 @@ void test__f_status_string_to__works(void **state) { F_enable_not, F_encoding, F_encoding_not, + F_end, + F_end_not, + F_end_not_block, + F_end_not_eoa, + F_end_not_eof, + F_end_not_eol, + F_end_not_eos, + F_end_not_group, + F_end_not_group_block, + F_end_not_group_eoa, + F_end_not_group_eof, + F_end_not_group_eol, + F_end_not_group_eos, + F_end_not_group_start, + F_end_not_group_stop, + F_end_not_nest, + F_end_not_nest_block, + F_end_not_nest_eoa, + F_end_not_nest_eof, + F_end_not_nest_eol, + F_end_not_nest_eos, + F_end_not_nest_start, + F_end_not_nest_stop, + F_end_not_start, + F_end_not_stop, F_endian, F_endian_big, F_endian_little, @@ -203,6 +275,8 @@ void test__f_status_string_to__works(void **state) { F_eol_not, F_eos, F_eos_not, + F_error, + F_error_not, F_execute, F_execute_not, F_exist, @@ -215,6 +289,8 @@ void test__f_status_string_to__works(void **state) { F_family_not, F_fifo, F_fifo_not, + F_fine, + F_fine_not, F_first, F_first_not, F_footer, @@ -294,6 +370,32 @@ void test__f_status_string_to__works(void **state) { F_name_not, F_need, F_need_not, + F_network, + F_network_busy, + F_network_busy_not, + F_network_client, + F_network_client_not, + F_network_device, + F_network_device_not, + F_network_found, + F_network_found_not, + F_network_lost, + F_network_lost_not, + F_network_not, + F_network_reach, + F_network_reach_client, + F_network_reach_client_not, + F_network_reach_not, + F_network_reach_server, + F_network_reach_server_not, + F_network_server, + F_network_server_not, + F_network_time, + F_network_time_not, + F_network_version_four, + F_network_version_four_not, + F_network_version_six, + F_network_version_six_not, F_next, F_next_not, F_nice, @@ -302,6 +404,23 @@ void test__f_status_string_to__works(void **state) { F_no_not, F_none, F_none_not, + F_number, + F_number_decimal, + F_number_decimal_not, + F_number_divide_by_zero, + F_number_negative, + F_number_negative_not, + F_number_not, + F_number_overflow, + F_number_positive, + F_number_positive_not, + F_number_too_large, + F_number_too_small, + F_number_underflow, + F_number_whole, + F_number_whole_not, + F_number_zero, + F_number_zero_not, F_object, F_object_not, F_once, @@ -448,6 +567,8 @@ void test__f_status_string_to__works(void **state) { F_wait_not, F_want, F_want_not, + F_warning, + F_warning_not, F_wish, F_wish_not, F_world, @@ -457,127 +578,6 @@ void test__f_status_string_to__works(void **state) { F_write_only, F_yes, F_yes_not, - F_debug, - F_debug_not, - F_error, - F_error_not, - F_fine, - F_fine_not, - F_warning, - F_warning_not, - F_array, - F_array_not, - F_array_too_large, - F_array_too_small, - F_available, - F_available_not, - F_available_not_address, - F_available_not_buffer, - F_available_not_device, - F_available_not_pipe, - F_available_not_port, - F_available_not_process, - F_available_not_socket, - F_busy, - F_busy_address, - F_busy_buffer, - F_busy_device, - F_busy_not, - F_busy_pipe, - F_busy_port, - F_busy_process, - F_busy_socket, - F_network, - F_network_busy, - F_network_busy_not, - F_network_client, - F_network_client_not, - F_network_device, - F_network_device_not, - F_network_found, - F_network_found_not, - F_network_lost, - F_network_lost_not, - F_network_not, - F_network_reach, - F_network_reach_client, - F_network_reach_client_not, - F_network_reach_not, - F_network_reach_server, - F_network_reach_server_not, - F_network_server, - F_network_server_not, - F_network_time, - F_network_time_not, - F_network_version_four, - F_network_version_four_not, - F_network_version_six, - F_network_version_six_not, - F_number, - F_number_decimal, - F_number_decimal_not, - F_number_divide_by_zero, - F_number_negative, - F_number_negative_not, - F_number_not, - F_number_overflow, - F_number_positive, - F_number_positive_not, - F_number_too_large, - F_number_too_small, - F_number_underflow, - F_number_whole, - F_number_whole_not, - F_number_zero, - F_number_zero_not, - F_buffer, - F_buffer_not, - F_buffer_overflow, - F_buffer_too_large, - F_buffer_too_small, - F_buffer_underflow, - F_complete_not_utf, - F_complete_not_utf_block, - F_complete_not_utf_eoa, - F_complete_not_utf_eof, - F_complete_not_utf_eol, - F_complete_not_utf_eos, - F_complete_not_utf_start, - F_complete_not_utf_stop, - F_data, - F_data_not, - F_data_not_block, - F_data_not_eoa, - F_data_not_eof, - F_data_not_eol, - F_data_not_eos, - F_data_not_start, - F_data_not_stop, - F_end, - F_end_not, - F_end_not_block, - F_end_not_eoa, - F_end_not_eof, - F_end_not_eol, - F_end_not_eos, - F_end_not_group, - F_end_not_group_block, - F_end_not_group_eoa, - F_end_not_group_eof, - F_end_not_group_eol, - F_end_not_group_eos, - F_end_not_group_start, - F_end_not_group_stop, - F_end_not_nest, - F_end_not_nest_block, - F_end_not_nest_eoa, - F_end_not_nest_eof, - F_end_not_nest_eol, - F_end_not_nest_eos, - F_end_not_nest_start, - F_end_not_nest_stop, - F_end_not_start, - F_end_not_stop, F_process, F_process_not, F_process_too_many, @@ -786,10 +786,23 @@ void test__f_status_string_to__works(void **state) { f_status_again_not_s, f_status_all_s, f_status_all_not_s, + f_status_array_s, + f_status_array_not_s, + f_status_array_too_large_s, + f_status_array_too_small_s, f_status_ascii_s, f_status_ascii_not_s, f_status_atomic_s, f_status_atomic_not_s, + f_status_available_s, + f_status_available_not_s, + f_status_available_not_address_s, + f_status_available_not_buffer_s, + f_status_available_not_device_s, + f_status_available_not_pipe_s, + f_status_available_not_port_s, + f_status_available_not_process_s, + f_status_available_not_socket_s, f_status_base_s, f_status_base_not_s, f_status_begin_s, @@ -804,6 +817,21 @@ void test__f_status_string_to__works(void **state) { f_status_bound_not_s, f_status_break_s, f_status_break_not_s, + f_status_buffer_s, + f_status_buffer_not_s, + f_status_buffer_overflow_s, + f_status_buffer_too_large_s, + f_status_buffer_too_small_s, + f_status_buffer_underflow_s, + f_status_busy_s, + f_status_busy_address_s, + f_status_busy_buffer_s, + f_status_busy_device_s, + f_status_busy_not_s, + f_status_busy_pipe_s, + f_status_busy_port_s, + f_status_busy_process_s, + f_status_busy_socket_s, f_status_call_s, f_status_call_not_s, f_status_capability_s, @@ -814,6 +842,14 @@ void test__f_status_string_to__works(void **state) { f_status_child_not_s, f_status_complete_s, f_status_complete_not_s, + f_status_complete_not_utf_s, + f_status_complete_not_utf_block_s, + f_status_complete_not_utf_eoa_s, + f_status_complete_not_utf_eof_s, + f_status_complete_not_utf_eol_s, + f_status_complete_not_utf_eos_s, + f_status_complete_not_utf_start_s, + f_status_complete_not_utf_stop_s, f_status_connect_s, f_status_connect_not_s, f_status_connect_refuse_s, @@ -830,10 +866,21 @@ void test__f_status_string_to__works(void **state) { f_status_control_group_not_s, f_status_critical_s, f_status_critical_not_s, + f_status_data_s, + f_status_data_not_s, + f_status_data_not_block_s, + f_status_data_not_eoa_s, + f_status_data_not_eof_s, + f_status_data_not_eol_s, + f_status_data_not_eos_s, + f_status_data_not_start_s, + f_status_data_not_stop_s, f_status_dead_s, f_status_dead_not_s, f_status_deadlock_s, f_status_deadlock_not_s, + f_status_debug_s, + f_status_debug_not_s, f_status_descriptor_s, f_status_descriptor_not_s, f_status_desire_s, @@ -858,6 +905,31 @@ void test__f_status_string_to__works(void **state) { f_status_enable_not_s, f_status_encoding_s, f_status_encoding_not_s, + f_status_end_s, + f_status_end_not_s, + f_status_end_not_block_s, + f_status_end_not_eoa_s, + f_status_end_not_eof_s, + f_status_end_not_eol_s, + f_status_end_not_eos_s, + f_status_end_not_group_s, + f_status_end_not_group_block_s, + f_status_end_not_group_eoa_s, + f_status_end_not_group_eof_s, + f_status_end_not_group_eol_s, + f_status_end_not_group_eos_s, + f_status_end_not_group_start_s, + f_status_end_not_group_stop_s, + f_status_end_not_nest_s, + f_status_end_not_nest_block_s, + f_status_end_not_nest_eoa_s, + f_status_end_not_nest_eof_s, + f_status_end_not_nest_eol_s, + f_status_end_not_nest_eos_s, + f_status_end_not_nest_start_s, + f_status_end_not_nest_stop_s, + f_status_end_not_start_s, + f_status_end_not_stop_s, f_status_endian_s, f_status_endian_big_s, f_status_endian_little_s, @@ -872,6 +944,8 @@ void test__f_status_string_to__works(void **state) { f_status_eol_not_s, f_status_eos_s, f_status_eos_not_s, + f_status_error_s, + f_status_error_not_s, f_status_execute_s, f_status_execute_not_s, f_status_exist_s, @@ -884,6 +958,8 @@ void test__f_status_string_to__works(void **state) { f_status_family_not_s, f_status_fifo_s, f_status_fifo_not_s, + f_status_fine_s, + f_status_fine_not_s, f_status_first_s, f_status_first_not_s, f_status_footer_s, @@ -963,6 +1039,32 @@ void test__f_status_string_to__works(void **state) { f_status_name_not_s, f_status_need_s, f_status_need_not_s, + f_status_network_s, + f_status_network_busy_s, + f_status_network_busy_not_s, + f_status_network_client_s, + f_status_network_client_not_s, + f_status_network_device_s, + f_status_network_device_not_s, + f_status_network_found_s, + f_status_network_found_not_s, + f_status_network_lost_s, + f_status_network_lost_not_s, + f_status_network_not_s, + f_status_network_reach_s, + f_status_network_reach_client_s, + f_status_network_reach_client_not_s, + f_status_network_reach_not_s, + f_status_network_reach_server_s, + f_status_network_reach_server_not_s, + f_status_network_server_s, + f_status_network_server_not_s, + f_status_network_time_s, + f_status_network_time_not_s, + f_status_network_version_four_s, + f_status_network_version_four_not_s, + f_status_network_version_six_s, + f_status_network_version_six_not_s, f_status_next_s, f_status_next_not_s, f_status_nice_s, @@ -971,6 +1073,23 @@ void test__f_status_string_to__works(void **state) { f_status_no_not_s, f_status_none_s, f_status_none_not_s, + f_status_number_s, + f_status_number_decimal_s, + f_status_number_decimal_not_s, + f_status_number_divide_by_zero_s, + f_status_number_negative_s, + f_status_number_negative_not_s, + f_status_number_not_s, + f_status_number_overflow_s, + f_status_number_positive_s, + f_status_number_positive_not_s, + f_status_number_too_large_s, + f_status_number_too_small_s, + f_status_number_underflow_s, + f_status_number_whole_s, + f_status_number_whole_not_s, + f_status_number_zero_s, + f_status_number_zero_not_s, f_status_object_s, f_status_object_not_s, f_status_once_s, @@ -1117,6 +1236,8 @@ void test__f_status_string_to__works(void **state) { f_status_wait_not_s, f_status_want_s, f_status_want_not_s, + f_status_warning_s, + f_status_warning_not_s, f_status_wish_s, f_status_wish_not_s, f_status_world_s, @@ -1126,127 +1247,6 @@ void test__f_status_string_to__works(void **state) { f_status_write_only_s, f_status_yes_s, f_status_yes_not_s, - f_status_debug_s, - f_status_debug_not_s, - f_status_error_s, - f_status_error_not_s, - f_status_fine_s, - f_status_fine_not_s, - f_status_warning_s, - f_status_warning_not_s, - f_status_array_s, - f_status_array_not_s, - f_status_array_too_large_s, - f_status_array_too_small_s, - f_status_available_s, - f_status_available_not_s, - f_status_available_not_address_s, - f_status_available_not_buffer_s, - f_status_available_not_device_s, - f_status_available_not_pipe_s, - f_status_available_not_port_s, - f_status_available_not_process_s, - f_status_available_not_socket_s, - f_status_busy_s, - f_status_busy_address_s, - f_status_busy_buffer_s, - f_status_busy_device_s, - f_status_busy_not_s, - f_status_busy_pipe_s, - f_status_busy_port_s, - f_status_busy_process_s, - f_status_busy_socket_s, - f_status_network_s, - f_status_network_busy_s, - f_status_network_busy_not_s, - f_status_network_client_s, - f_status_network_client_not_s, - f_status_network_device_s, - f_status_network_device_not_s, - f_status_network_found_s, - f_status_network_found_not_s, - f_status_network_lost_s, - f_status_network_lost_not_s, - f_status_network_not_s, - f_status_network_reach_s, - f_status_network_reach_client_s, - f_status_network_reach_client_not_s, - f_status_network_reach_not_s, - f_status_network_reach_server_s, - f_status_network_reach_server_not_s, - f_status_network_server_s, - f_status_network_server_not_s, - f_status_network_time_s, - f_status_network_time_not_s, - f_status_network_version_four_s, - f_status_network_version_four_not_s, - f_status_network_version_six_s, - f_status_network_version_six_not_s, - f_status_number_s, - f_status_number_decimal_s, - f_status_number_decimal_not_s, - f_status_number_divide_by_zero_s, - f_status_number_negative_s, - f_status_number_negative_not_s, - f_status_number_not_s, - f_status_number_overflow_s, - f_status_number_positive_s, - f_status_number_positive_not_s, - f_status_number_too_large_s, - f_status_number_too_small_s, - f_status_number_underflow_s, - f_status_number_whole_s, - f_status_number_whole_not_s, - f_status_number_zero_s, - f_status_number_zero_not_s, - f_status_buffer_s, - f_status_buffer_not_s, - f_status_buffer_overflow_s, - f_status_buffer_too_large_s, - f_status_buffer_too_small_s, - f_status_buffer_underflow_s, - f_status_complete_not_utf_s, - f_status_complete_not_utf_block_s, - f_status_complete_not_utf_eoa_s, - f_status_complete_not_utf_eof_s, - f_status_complete_not_utf_eol_s, - f_status_complete_not_utf_eos_s, - f_status_complete_not_utf_start_s, - f_status_complete_not_utf_stop_s, - f_status_data_s, - f_status_data_not_s, - f_status_data_not_block_s, - f_status_data_not_eoa_s, - f_status_data_not_eof_s, - f_status_data_not_eol_s, - f_status_data_not_eos_s, - f_status_data_not_start_s, - f_status_data_not_stop_s, - f_status_end_s, - f_status_end_not_s, - f_status_end_not_block_s, - f_status_end_not_eoa_s, - f_status_end_not_eof_s, - f_status_end_not_eol_s, - f_status_end_not_eos_s, - f_status_end_not_group_s, - f_status_end_not_group_block_s, - f_status_end_not_group_eoa_s, - f_status_end_not_group_eof_s, - f_status_end_not_group_eol_s, - f_status_end_not_group_eos_s, - f_status_end_not_group_start_s, - f_status_end_not_group_stop_s, - f_status_end_not_nest_s, - f_status_end_not_nest_block_s, - f_status_end_not_nest_eoa_s, - f_status_end_not_nest_eof_s, - f_status_end_not_nest_eol_s, - f_status_end_not_nest_eos_s, - f_status_end_not_nest_start_s, - f_status_end_not_nest_stop_s, - f_status_end_not_start_s, - f_status_end_not_stop_s, f_status_process_s, f_status_process_not_s, f_status_process_too_many_s, diff --git a/level_1/fl_status_string/c/status_string.c b/level_1/fl_status_string/c/status_string.c index 39a9f7a..49a64cc 100644 --- a/level_1/fl_status_string/c/status_string.c +++ b/level_1/fl_status_string/c/status_string.c @@ -543,6 +543,30 @@ extern "C" { return F_okay; } + if (f_compare_dynamic(name, f_status_array_s) == F_equal_to) { + *code = F_array; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_array_not_s) == F_equal_to) { + *code = F_array_not; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_array_too_large_s) == F_equal_to) { + *code = F_array_too_large; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_array_too_small_s) == F_equal_to) { + *code = F_array_too_small; + + return F_okay; + } + if (f_compare_dynamic(name, f_status_ascii_s) == F_equal_to) { *code = F_ascii; @@ -567,6 +591,60 @@ extern "C" { return F_okay; } + if (f_compare_dynamic(name, f_status_available_s) == F_equal_to) { + *code = F_available; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_available_not_s) == F_equal_to) { + *code = F_available_not; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_available_not_address_s) == F_equal_to) { + *code = F_available_not_address; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_available_not_buffer_s) == F_equal_to) { + *code = F_available_not_buffer; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_available_not_device_s) == F_equal_to) { + *code = F_available_not_device; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_available_not_pipe_s) == F_equal_to) { + *code = F_available_not_pipe; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_available_not_port_s) == F_equal_to) { + *code = F_available_not_port; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_available_not_process_s) == F_equal_to) { + *code = F_available_not_process; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_available_not_socket_s) == F_equal_to) { + *code = F_available_not_socket; + + return F_okay; + } + if (f_compare_dynamic(name, f_status_base_s) == F_equal_to) { *code = F_base; @@ -651,6 +729,96 @@ extern "C" { return F_okay; } + if (f_compare_dynamic(name, f_status_buffer_s) == F_equal_to) { + *code = F_buffer; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_buffer_not_s) == F_equal_to) { + *code = F_buffer_not; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_buffer_overflow_s) == F_equal_to) { + *code = F_buffer_overflow; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_buffer_too_large_s) == F_equal_to) { + *code = F_buffer_too_large; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_buffer_too_small_s) == F_equal_to) { + *code = F_buffer_too_small; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_buffer_underflow_s) == F_equal_to) { + *code = F_buffer_underflow; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_busy_s) == F_equal_to) { + *code = F_busy; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_busy_address_s) == F_equal_to) { + *code = F_busy_address; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_busy_buffer_s) == F_equal_to) { + *code = F_busy_buffer; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_busy_device_s) == F_equal_to) { + *code = F_busy_device; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_busy_not_s) == F_equal_to) { + *code = F_busy_not; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_busy_pipe_s) == F_equal_to) { + *code = F_busy_pipe; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_busy_port_s) == F_equal_to) { + *code = F_busy_port; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_busy_process_s) == F_equal_to) { + *code = F_busy_process; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_busy_socket_s) == F_equal_to) { + *code = F_busy_socket; + + return F_okay; + } + if (f_compare_dynamic(name, f_status_call_s) == F_equal_to) { *code = F_call; @@ -710,6 +878,53 @@ extern "C" { return F_okay; } + if (f_compare_dynamic(name, f_status_complete_not_utf_s) == F_equal_to) { + *code = F_complete_not_utf; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_complete_not_utf_block_s) == F_equal_to) { + *code = F_complete_not_utf_block; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_complete_not_utf_eoa_s) == F_equal_to) { + *code = F_complete_not_utf_eoa; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_complete_not_utf_eof_s) == F_equal_to) { + *code = F_complete_not_utf_eof; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_complete_not_utf_eol_s) == F_equal_to) { + *code = F_complete_not_utf_eol; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_complete_not_utf_eos_s) == F_equal_to) { + *code = F_complete_not_utf_eos; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_complete_not_utf_start_s) == F_equal_to) { + *code = F_complete_not_utf_start; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_complete_not_utf_stop_s) == F_equal_to) { + *code = F_complete_not_utf_stop; + + return F_okay; + } if (f_compare_dynamic(name, f_status_connect_s) == F_equal_to) { *code = F_connect; @@ -807,67 +1022,132 @@ extern "C" { return F_okay; } - if (f_compare_dynamic(name, f_status_dead_s) == F_equal_to) { - *code = F_dead; + if (f_compare_dynamic(name, f_status_data_s) == F_equal_to) { + *code = F_data; return F_okay; } - if (f_compare_dynamic(name, f_status_dead_not_s) == F_equal_to) { - *code = F_dead_not; + if (f_compare_dynamic(name, f_status_data_not_s) == F_equal_to) { + *code = F_data_not; return F_okay; } - if (f_compare_dynamic(name, f_status_deadlock_s) == F_equal_to) { - *code = F_deadlock; + if (f_compare_dynamic(name, f_status_data_not_block_s) == F_equal_to) { + *code = F_data_not_block; return F_okay; } - if (f_compare_dynamic(name, f_status_deadlock_not_s) == F_equal_to) { - *code = F_deadlock_not; + if (f_compare_dynamic(name, f_status_data_not_eoa_s) == F_equal_to) { + *code = F_data_not_eoa; return F_okay; } - if (f_compare_dynamic(name, f_status_descriptor_s) == F_equal_to) { - *code = F_descriptor; + if (f_compare_dynamic(name, f_status_data_not_eof_s) == F_equal_to) { + *code = F_data_not_eof; return F_okay; } - if (f_compare_dynamic(name, f_status_descriptor_not_s) == F_equal_to) { - *code = F_descriptor_not; + if (f_compare_dynamic(name, f_status_data_not_eol_s) == F_equal_to) { + *code = F_data_not_eol; return F_okay; } - if (f_compare_dynamic(name, f_status_desire_s) == F_equal_to) { - *code = F_desire; + if (f_compare_dynamic(name, f_status_data_not_eos_s) == F_equal_to) { + *code = F_data_not_eos; return F_okay; } - if (f_compare_dynamic(name, f_status_desire_not_s) == F_equal_to) { - *code = F_desire_not; + if (f_compare_dynamic(name, f_status_data_not_start_s) == F_equal_to) { + *code = F_data_not_start; return F_okay; } - if (f_compare_dynamic(name, f_status_device_s) == F_equal_to) { - *code = F_device; + if (f_compare_dynamic(name, f_status_data_not_stop_s) == F_equal_to) { + *code = F_data_not_stop; return F_okay; } - if (f_compare_dynamic(name, f_status_device_not_s) == F_equal_to) { - *code = F_device_not; + if (f_compare_dynamic(name, f_status_dead_s) == F_equal_to) { + *code = F_dead; return F_okay; } - if (f_compare_dynamic(name, f_status_disable_s) == F_equal_to) { + if (f_compare_dynamic(name, f_status_dead_not_s) == F_equal_to) { + *code = F_dead_not; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_deadlock_s) == F_equal_to) { + *code = F_deadlock; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_deadlock_not_s) == F_equal_to) { + *code = F_deadlock_not; + + return F_okay; + } + if (f_compare_dynamic(name, f_status_debug_s) == F_equal_to) { + *code = F_debug; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_debug_not_s) == F_equal_to) { + *code = F_debug_not; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_descriptor_s) == F_equal_to) { + *code = F_descriptor; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_descriptor_not_s) == F_equal_to) { + *code = F_descriptor_not; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_desire_s) == F_equal_to) { + *code = F_desire; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_desire_not_s) == F_equal_to) { + *code = F_desire_not; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_device_s) == F_equal_to) { + *code = F_device; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_device_not_s) == F_equal_to) { + *code = F_device_not; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_disable_s) == F_equal_to) { *code = F_disable; return F_okay; @@ -975,6 +1255,156 @@ extern "C" { return F_okay; } + if (f_compare_dynamic(name, f_status_end_s) == F_equal_to) { + *code = F_end; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_end_not_s) == F_equal_to) { + *code = F_end_not; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_end_not_block_s) == F_equal_to) { + *code = F_end_not_block; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_end_not_eoa_s) == F_equal_to) { + *code = F_end_not_eoa; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_end_not_eof_s) == F_equal_to) { + *code = F_end_not_eof; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_end_not_eol_s) == F_equal_to) { + *code = F_end_not_eol; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_end_not_eos_s) == F_equal_to) { + *code = F_end_not_eos; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_end_not_group_s) == F_equal_to) { + *code = F_end_not_group; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_end_not_group_block_s) == F_equal_to) { + *code = F_end_not_group_block; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_end_not_group_eoa_s) == F_equal_to) { + *code = F_end_not_group_eoa; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_end_not_group_eof_s) == F_equal_to) { + *code = F_end_not_group_eof; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_end_not_group_eol_s) == F_equal_to) { + *code = F_end_not_group_eol; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_end_not_group_eos_s) == F_equal_to) { + *code = F_end_not_group_eos; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_end_not_group_start_s) == F_equal_to) { + *code = F_end_not_group_start; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_end_not_group_stop_s) == F_equal_to) { + *code = F_end_not_group_stop; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_end_not_nest_s) == F_equal_to) { + *code = F_end_not_nest; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_end_not_nest_block_s) == F_equal_to) { + *code = F_end_not_nest_block; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_end_not_nest_eoa_s) == F_equal_to) { + *code = F_end_not_nest_eoa; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_end_not_nest_eof_s) == F_equal_to) { + *code = F_end_not_nest_eof; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_end_not_nest_eol_s) == F_equal_to) { + *code = F_end_not_nest_eol; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_end_not_nest_eos_s) == F_equal_to) { + *code = F_end_not_nest_eos; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_end_not_nest_start_s) == F_equal_to) { + *code = F_end_not_nest_start; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_end_not_nest_stop_s) == F_equal_to) { + *code = F_end_not_nest_stop; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_end_not_start_s) == F_equal_to) { + *code = F_end_not_start; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_end_not_stop_s) == F_equal_to) { + *code = F_end_not_stop; + + return F_okay; + } + if (f_compare_dynamic(name, f_status_endian_s) == F_equal_to) { *code = F_endian; @@ -1059,6 +1489,18 @@ extern "C" { return F_okay; } + if (f_compare_dynamic(name, f_status_error_s) == F_equal_to) { + *code = F_error; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_error_not_s) == F_equal_to) { + *code = F_error_not; + + return F_okay; + } + if (f_compare_dynamic(name, f_status_execute_s) == F_equal_to) { *code = F_execute; @@ -1131,6 +1573,18 @@ extern "C" { return F_okay; } + if (f_compare_dynamic(name, f_status_fine_s) == F_equal_to) { + *code = F_fine; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_fine_not_s) == F_equal_to) { + *code = F_fine_not; + + return F_okay; + } + if (f_compare_dynamic(name, f_status_first_s) == F_equal_to) { *code = F_first; @@ -1604,1715 +2058,1250 @@ extern "C" { return F_okay; } - - if (f_compare_dynamic(name, f_status_next_s) == F_equal_to) { - *code = F_next; + if (f_compare_dynamic(name, f_status_network_s) == F_equal_to) { + *code = F_network; return F_okay; } - if (f_compare_dynamic(name, f_status_next_not_s) == F_equal_to) { - *code = F_next_not; + if (f_compare_dynamic(name, f_status_network_busy_s) == F_equal_to) { + *code = F_network_busy; return F_okay; } - if (f_compare_dynamic(name, f_status_nice_s) == F_equal_to) { - *code = F_nice; + if (f_compare_dynamic(name, f_status_network_busy_not_s) == F_equal_to) { + *code = F_network_busy_not; return F_okay; } - if (f_compare_dynamic(name, f_status_nice_not_s) == F_equal_to) { - *code = F_nice_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_no_s) == F_equal_to) { - *code = F_no; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_no_not_s) == F_equal_to) { - *code = F_no_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_none_s) == F_equal_to) { - *code = F_none; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_none_not_s) == F_equal_to) { - *code = F_none_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_object_s) == F_equal_to) { - *code = F_object; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_object_not_s) == F_equal_to) { - *code = F_object_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_once_s) == F_equal_to) { - *code = F_once; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_once_not_s) == F_equal_to) { - *code = F_once_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_option_s) == F_equal_to) { - *code = F_option; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_option_not_s) == F_equal_to) { - *code = F_option_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_output_s) == F_equal_to) { - *code = F_output; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_output_not_s) == F_equal_to) { - *code = F_output_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_packet_s) == F_equal_to) { - *code = F_packet; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_packet_not_s) == F_equal_to) { - *code = F_packet_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_packet_too_large_s) == F_equal_to) { - *code = F_packet_too_large; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_packet_too_large_not_s) == F_equal_to) { - *code = F_packet_too_large_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_packet_too_small_s) == F_equal_to) { - *code = F_packet_too_small; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_packet_too_small_not_s) == F_equal_to) { - *code = F_packet_too_small_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_parameter_s) == F_equal_to) { - *code = F_parameter; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_parameter_not_s) == F_equal_to) { - *code = F_parameter_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_parent_s) == F_equal_to) { - *code = F_parent; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_parent_not_s) == F_equal_to) { - *code = F_parent_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_partial_s) == F_equal_to) { - *code = F_partial; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_partial_not_s) == F_equal_to) { - *code = F_partial_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_payload_s) == F_equal_to) { - *code = F_payload; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_payload_not_s) == F_equal_to) { - *code = F_payload_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_payload_too_large_s) == F_equal_to) { - *code = F_payload_too_large; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_payload_too_large_not_s) == F_equal_to) { - *code = F_payload_too_large_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_payload_too_small_s) == F_equal_to) { - *code = F_payload_too_small; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_payload_too_small_not_s) == F_equal_to) { - *code = F_payload_too_small_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_pipe_s) == F_equal_to) { - *code = F_pipe; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_pipe_not_s) == F_equal_to) { - *code = F_pipe_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_port_s) == F_equal_to) { - *code = F_port; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_port_not_s) == F_equal_to) { - *code = F_port_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_previous_s) == F_equal_to) { - *code = F_previous; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_previous_not_s) == F_equal_to) { - *code = F_previous_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_processor_s) == F_equal_to) { - *code = F_processor; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_processor_not_s) == F_equal_to) { - *code = F_processor_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_progress_s) == F_equal_to) { - *code = F_progress; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_progress_not_s) == F_equal_to) { - *code = F_progress_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_prohibited_s) == F_equal_to) { - *code = F_prohibited; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_prohibited_not_s) == F_equal_to) { - *code = F_prohibited_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_property_s) == F_equal_to) { - *code = F_property; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_property_not_s) == F_equal_to) { - *code = F_property_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_protocol_s) == F_equal_to) { - *code = F_protocol; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_protocol_not_s) == F_equal_to) { - *code = F_protocol_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_range_s) == F_equal_to) { - *code = F_range; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_range_not_s) == F_equal_to) { - *code = F_range_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_read_s) == F_equal_to) { - *code = F_read; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_read_not_s) == F_equal_to) { - *code = F_read_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_read_only_s) == F_equal_to) { - *code = F_read_only; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_ready_s) == F_equal_to) { - *code = F_ready; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_ready_not_s) == F_equal_to) { - *code = F_ready_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_receive_s) == F_equal_to) { - *code = F_receive; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_receive_not_s) == F_equal_to) { - *code = F_receive_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_recover_s) == F_equal_to) { - *code = F_recover; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_recover_not_s) == F_equal_to) { - *code = F_recover_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_recurse_s) == F_equal_to) { - *code = F_recurse; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_recurse_not_s) == F_equal_to) { - *code = F_recurse_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_refresh_s) == F_equal_to) { - *code = F_refresh; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_refresh_not_s) == F_equal_to) { - *code = F_refresh_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_regular_s) == F_equal_to) { - *code = F_regular; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_regular_not_s) == F_equal_to) { - *code = F_regular_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_relative_s) == F_equal_to) { - *code = F_relative; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_relative_not_s) == F_equal_to) { - *code = F_relative_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_reload_s) == F_equal_to) { - *code = F_reload; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_reload_not_s) == F_equal_to) { - *code = F_reload_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_remote_s) == F_equal_to) { - *code = F_remote; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_remote_not_s) == F_equal_to) { - *code = F_remote_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_remove_s) == F_equal_to) { - *code = F_remove; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_remove_not_s) == F_equal_to) { - *code = F_remove_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_repeat_s) == F_equal_to) { - *code = F_repeat; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_repeat_not_s) == F_equal_to) { - *code = F_repeat_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_require_s) == F_equal_to) { - *code = F_require; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_require_not_s) == F_equal_to) { - *code = F_require_not; - - return F_okay; - } - - if (f_compare_dynamic(name, f_status_resource_s) == F_equal_to) { - *code = F_resource; + if (f_compare_dynamic(name, f_status_network_client_s) == F_equal_to) { + *code = F_network_client; return F_okay; } - if (f_compare_dynamic(name, f_status_resource_not_s) == F_equal_to) { - *code = F_resource_not; + if (f_compare_dynamic(name, f_status_network_client_not_s) == F_equal_to) { + *code = F_network_client_not; return F_okay; } - if (f_compare_dynamic(name, f_status_restart_s) == F_equal_to) { - *code = F_restart; + if (f_compare_dynamic(name, f_status_network_device_s) == F_equal_to) { + *code = F_network_device; return F_okay; } - if (f_compare_dynamic(name, f_status_restart_not_s) == F_equal_to) { - *code = F_restart_not; + if (f_compare_dynamic(name, f_status_network_device_not_s) == F_equal_to) { + *code = F_network_device_not; return F_okay; } - if (f_compare_dynamic(name, f_status_restore_s) == F_equal_to) { - *code = F_restore; + if (f_compare_dynamic(name, f_status_network_found_s) == F_equal_to) { + *code = F_network_found; return F_okay; } - if (f_compare_dynamic(name, f_status_restore_not_s) == F_equal_to) { - *code = F_restore_not; + if (f_compare_dynamic(name, f_status_network_found_not_s) == F_equal_to) { + *code = F_network_found_not; return F_okay; } - if (f_compare_dynamic(name, f_status_revert_s) == F_equal_to) { - *code = F_revert; + if (f_compare_dynamic(name, f_status_network_lost_s) == F_equal_to) { + *code = F_network_lost; return F_okay; } - if (f_compare_dynamic(name, f_status_revert_not_s) == F_equal_to) { - *code = F_revert_not; + if (f_compare_dynamic(name, f_status_network_lost_not_s) == F_equal_to) { + *code = F_network_lost_not; return F_okay; } - if (f_compare_dynamic(name, f_status_schedule_s) == F_equal_to) { - *code = F_schedule; + if (f_compare_dynamic(name, f_status_network_not_s) == F_equal_to) { + *code = F_network_not; return F_okay; } - if (f_compare_dynamic(name, f_status_schedule_not_s) == F_equal_to) { - *code = F_schedule_not; + if (f_compare_dynamic(name, f_status_network_reach_s) == F_equal_to) { + *code = F_network_reach; return F_okay; } - if (f_compare_dynamic(name, f_status_search_s) == F_equal_to) { - *code = F_search; + if (f_compare_dynamic(name, f_status_network_reach_client_s) == F_equal_to) { + *code = F_network_reach_client; return F_okay; } - if (f_compare_dynamic(name, f_status_search_not_s) == F_equal_to) { - *code = F_search_not; + if (f_compare_dynamic(name, f_status_network_reach_client_not_s) == F_equal_to) { + *code = F_network_reach_client_not; return F_okay; } - if (f_compare_dynamic(name, f_status_send_s) == F_equal_to) { - *code = F_send; + if (f_compare_dynamic(name, f_status_network_reach_not_s) == F_equal_to) { + *code = F_network_reach_not; return F_okay; } - if (f_compare_dynamic(name, f_status_send_not_s) == F_equal_to) { - *code = F_send_not; + if (f_compare_dynamic(name, f_status_network_reach_server_s) == F_equal_to) { + *code = F_network_reach_server; return F_okay; } - if (f_compare_dynamic(name, f_status_size_s) == F_equal_to) { - *code = F_size; + if (f_compare_dynamic(name, f_status_network_reach_server_not_s) == F_equal_to) { + *code = F_network_reach_server_not; return F_okay; } - if (f_compare_dynamic(name, f_status_size_not_s) == F_equal_to) { - *code = F_size_not; + if (f_compare_dynamic(name, f_status_network_server_s) == F_equal_to) { + *code = F_network_server; return F_okay; } - if (f_compare_dynamic(name, f_status_signal_s) == F_equal_to) { - *code = F_signal; + if (f_compare_dynamic(name, f_status_network_server_not_s) == F_equal_to) { + *code = F_network_server_not; return F_okay; } - if (f_compare_dynamic(name, f_status_signal_not_s) == F_equal_to) { - *code = F_signal_not; + if (f_compare_dynamic(name, f_status_network_time_s) == F_equal_to) { + *code = F_network_time; return F_okay; } - if (f_compare_dynamic(name, f_status_some_s) == F_equal_to) { - *code = F_some; + if (f_compare_dynamic(name, f_status_network_time_not_s) == F_equal_to) { + *code = F_network_time_not; return F_okay; } - if (f_compare_dynamic(name, f_status_some_not_s) == F_equal_to) { - *code = F_some_not; + if (f_compare_dynamic(name, f_status_network_version_four_s) == F_equal_to) { + *code = F_network_version_four; return F_okay; } - if (f_compare_dynamic(name, f_status_space_s) == F_equal_to) { - *code = F_space; + if (f_compare_dynamic(name, f_status_network_version_four_not_s) == F_equal_to) { + *code = F_network_version_four_not; return F_okay; } - if (f_compare_dynamic(name, f_status_space_not_s) == F_equal_to) { - *code = F_space_not; + if (f_compare_dynamic(name, f_status_network_version_six_s) == F_equal_to) { + *code = F_network_version_six; return F_okay; } - if (f_compare_dynamic(name, f_status_skip_s) == F_equal_to) { - *code = F_skip; + if (f_compare_dynamic(name, f_status_network_version_six_not_s) == F_equal_to) { + *code = F_network_version_six_not; return F_okay; } - if (f_compare_dynamic(name, f_status_skip_not_s) == F_equal_to) { - *code = F_skip_not; + if (f_compare_dynamic(name, f_status_next_s) == F_equal_to) { + *code = F_next; return F_okay; } - if (f_compare_dynamic(name, f_status_start_s) == F_equal_to) { - *code = F_start; + if (f_compare_dynamic(name, f_status_next_not_s) == F_equal_to) { + *code = F_next_not; return F_okay; } - if (f_compare_dynamic(name, f_status_start_not_s) == F_equal_to) { - *code = F_start_not; + if (f_compare_dynamic(name, f_status_nice_s) == F_equal_to) { + *code = F_nice; return F_okay; } - if (f_compare_dynamic(name, f_status_status_s) == F_equal_to) { - *code = F_status; + if (f_compare_dynamic(name, f_status_nice_not_s) == F_equal_to) { + *code = F_nice_not; return F_okay; } - if (f_compare_dynamic(name, f_status_status_not_s) == F_equal_to) { - *code = F_status_not; + if (f_compare_dynamic(name, f_status_no_s) == F_equal_to) { + *code = F_no; return F_okay; } - if (f_compare_dynamic(name, f_status_stop_s) == F_equal_to) { - *code = F_stop; + if (f_compare_dynamic(name, f_status_no_not_s) == F_equal_to) { + *code = F_no_not; return F_okay; } - if (f_compare_dynamic(name, f_status_stop_not_s) == F_equal_to) { - *code = F_stop_not; + if (f_compare_dynamic(name, f_status_none_s) == F_equal_to) { + *code = F_none; return F_okay; } - if (f_compare_dynamic(name, f_status_store_s) == F_equal_to) { - *code = F_store; + if (f_compare_dynamic(name, f_status_none_not_s) == F_equal_to) { + *code = F_none_not; return F_okay; } - if (f_compare_dynamic(name, f_status_store_not_s) == F_equal_to) { - *code = F_store_not; + if (f_compare_dynamic(name, f_status_number_s) == F_equal_to) { + *code = F_number; return F_okay; } - if (f_compare_dynamic(name, f_status_stream_s) == F_equal_to) { - *code = F_stream; + if (f_compare_dynamic(name, f_status_number_decimal_s) == F_equal_to) { + *code = F_number_decimal; return F_okay; } - if (f_compare_dynamic(name, f_status_stream_not_s) == F_equal_to) { - *code = F_stream_not; + if (f_compare_dynamic(name, f_status_number_decimal_not_s) == F_equal_to) { + *code = F_number_decimal_not; return F_okay; } - if (f_compare_dynamic(name, f_status_string_s) == F_equal_to) { - *code = F_string; + if (f_compare_dynamic(name, f_status_number_divide_by_zero_s) == F_equal_to) { + *code = F_number_divide_by_zero; return F_okay; } - if (f_compare_dynamic(name, f_status_string_not_s) == F_equal_to) { - *code = F_string_not; + if (f_compare_dynamic(name, f_status_number_negative_s) == F_equal_to) { + *code = F_number_negative; return F_okay; } - if (f_compare_dynamic(name, f_status_string_too_large_s) == F_equal_to) { - *code = F_string_too_large; + if (f_compare_dynamic(name, f_status_number_negative_not_s) == F_equal_to) { + *code = F_number_negative_not; return F_okay; } - if (f_compare_dynamic(name, f_status_string_too_small_s) == F_equal_to) { - *code = F_string_too_small; + if (f_compare_dynamic(name, f_status_number_not_s) == F_equal_to) { + *code = F_number_not; return F_okay; } - if (f_compare_dynamic(name, f_status_success_s) == F_equal_to) { - *code = F_success; + if (f_compare_dynamic(name, f_status_number_overflow_s) == F_equal_to) { + *code = F_number_overflow; return F_okay; } - if (f_compare_dynamic(name, f_status_success_not_s) == F_equal_to) { - *code = F_success_not; + if (f_compare_dynamic(name, f_status_number_positive_s) == F_equal_to) { + *code = F_number_positive; return F_okay; } - if (f_compare_dynamic(name, f_status_support_s) == F_equal_to) { - *code = F_support; + if (f_compare_dynamic(name, f_status_number_positive_not_s) == F_equal_to) { + *code = F_number_positive_not; return F_okay; } - if (f_compare_dynamic(name, f_status_support_not_s) == F_equal_to) { - *code = F_support_not; + if (f_compare_dynamic(name, f_status_number_too_large_s) == F_equal_to) { + *code = F_number_too_large; return F_okay; } - if (f_compare_dynamic(name, f_status_syntax_s) == F_equal_to) { - *code = F_syntax; + if (f_compare_dynamic(name, f_status_number_too_small_s) == F_equal_to) { + *code = F_number_too_small; return F_okay; } - if (f_compare_dynamic(name, f_status_syntax_not_s) == F_equal_to) { - *code = F_syntax_not; + if (f_compare_dynamic(name, f_status_number_underflow_s) == F_equal_to) { + *code = F_number_underflow; return F_okay; } - if (f_compare_dynamic(name, f_status_terminate_s) == F_equal_to) { - *code = F_terminate; + if (f_compare_dynamic(name, f_status_number_whole_s) == F_equal_to) { + *code = F_number_whole; return F_okay; } - if (f_compare_dynamic(name, f_status_terminate_not_s) == F_equal_to) { - *code = F_terminate_not; + if (f_compare_dynamic(name, f_status_number_whole_not_s) == F_equal_to) { + *code = F_number_whole_not; return F_okay; } - if (f_compare_dynamic(name, f_status_test_s) == F_equal_to) { - *code = F_test; + if (f_compare_dynamic(name, f_status_number_zero_s) == F_equal_to) { + *code = F_number_zero; return F_okay; } - if (f_compare_dynamic(name, f_status_test_not_s) == F_equal_to) { - *code = F_test_not; + if (f_compare_dynamic(name, f_status_number_zero_not_s) == F_equal_to) { + *code = F_number_zero_not; return F_okay; } - if (f_compare_dynamic(name, f_status_thread_s) == F_equal_to) { - *code = F_thread; + if (f_compare_dynamic(name, f_status_object_s) == F_equal_to) { + *code = F_object; return F_okay; } - if (f_compare_dynamic(name, f_status_thread_not_s) == F_equal_to) { - *code = F_thread_not; + if (f_compare_dynamic(name, f_status_object_not_s) == F_equal_to) { + *code = F_object_not; return F_okay; } - if (f_compare_dynamic(name, f_status_time_s) == F_equal_to) { - *code = F_time; + if (f_compare_dynamic(name, f_status_once_s) == F_equal_to) { + *code = F_once; return F_okay; } - if (f_compare_dynamic(name, f_status_time_not_s) == F_equal_to) { - *code = F_time_not; + if (f_compare_dynamic(name, f_status_once_not_s) == F_equal_to) { + *code = F_once_not; return F_okay; } - if (f_compare_dynamic(name, f_status_time_out_s) == F_equal_to) { - *code = F_time_out; + if (f_compare_dynamic(name, f_status_option_s) == F_equal_to) { + *code = F_option; return F_okay; } - if (f_compare_dynamic(name, f_status_too_large_s) == F_equal_to) { - *code = F_too_large; + if (f_compare_dynamic(name, f_status_option_not_s) == F_equal_to) { + *code = F_option_not; return F_okay; } - if (f_compare_dynamic(name, f_status_too_small_s) == F_equal_to) { - *code = F_too_small; + if (f_compare_dynamic(name, f_status_output_s) == F_equal_to) { + *code = F_output; return F_okay; } - if (f_compare_dynamic(name, f_status_top_s) == F_equal_to) { - *code = F_top; + if (f_compare_dynamic(name, f_status_output_not_s) == F_equal_to) { + *code = F_output_not; return F_okay; } - if (f_compare_dynamic(name, f_status_top_not_s) == F_equal_to) { - *code = F_top_not; + if (f_compare_dynamic(name, f_status_packet_s) == F_equal_to) { + *code = F_packet; return F_okay; } - if (f_compare_dynamic(name, f_status_type_s) == F_equal_to) { - *code = F_type; + if (f_compare_dynamic(name, f_status_packet_not_s) == F_equal_to) { + *code = F_packet_not; return F_okay; } - if (f_compare_dynamic(name, f_status_type_not_s) == F_equal_to) { - *code = F_type_not; + if (f_compare_dynamic(name, f_status_packet_too_large_s) == F_equal_to) { + *code = F_packet_too_large; return F_okay; } - if (f_compare_dynamic(name, f_status_unload_s) == F_equal_to) { - *code = F_unload; + if (f_compare_dynamic(name, f_status_packet_too_large_not_s) == F_equal_to) { + *code = F_packet_too_large_not; return F_okay; } - if (f_compare_dynamic(name, f_status_unload_not_s) == F_equal_to) { - *code = F_unload_not; + if (f_compare_dynamic(name, f_status_packet_too_small_s) == F_equal_to) { + *code = F_packet_too_small; return F_okay; } - if (f_compare_dynamic(name, f_status_user_s) == F_equal_to) { - *code = F_user; + if (f_compare_dynamic(name, f_status_packet_too_small_not_s) == F_equal_to) { + *code = F_packet_too_small_not; return F_okay; } - if (f_compare_dynamic(name, f_status_user_not_s) == F_equal_to) { - *code = F_user_not; + if (f_compare_dynamic(name, f_status_parameter_s) == F_equal_to) { + *code = F_parameter; return F_okay; } - if (f_compare_dynamic(name, f_status_utf_s) == F_equal_to) { - *code = F_utf; + if (f_compare_dynamic(name, f_status_parameter_not_s) == F_equal_to) { + *code = F_parameter_not; return F_okay; } - if (f_compare_dynamic(name, f_status_utf_fragment_s) == F_equal_to) { - *code = F_utf_fragment; + if (f_compare_dynamic(name, f_status_parent_s) == F_equal_to) { + *code = F_parent; return F_okay; } - if (f_compare_dynamic(name, f_status_utf_fragment_not_s) == F_equal_to) { - *code = F_utf_fragment_not; + if (f_compare_dynamic(name, f_status_parent_not_s) == F_equal_to) { + *code = F_parent_not; return F_okay; } - if (f_compare_dynamic(name, f_status_utf_not_s) == F_equal_to) { - *code = F_utf_not; + if (f_compare_dynamic(name, f_status_partial_s) == F_equal_to) { + *code = F_partial; return F_okay; } - if (f_compare_dynamic(name, f_status_valid_s) == F_equal_to) { - *code = F_valid; + if (f_compare_dynamic(name, f_status_partial_not_s) == F_equal_to) { + *code = F_partial_not; return F_okay; } - if (f_compare_dynamic(name, f_status_valid_not_s) == F_equal_to) { - *code = F_valid_not; + if (f_compare_dynamic(name, f_status_payload_s) == F_equal_to) { + *code = F_payload; return F_okay; } - if (f_compare_dynamic(name, f_status_value_s) == F_equal_to) { - *code = F_value; + if (f_compare_dynamic(name, f_status_payload_not_s) == F_equal_to) { + *code = F_payload_not; return F_okay; } - if (f_compare_dynamic(name, f_status_value_not_s) == F_equal_to) { - *code = F_value_not; + if (f_compare_dynamic(name, f_status_payload_too_large_s) == F_equal_to) { + *code = F_payload_too_large; return F_okay; } - if (f_compare_dynamic(name, f_status_wait_s) == F_equal_to) { - *code = F_wait; + if (f_compare_dynamic(name, f_status_payload_too_large_not_s) == F_equal_to) { + *code = F_payload_too_large_not; return F_okay; } - if (f_compare_dynamic(name, f_status_wait_not_s) == F_equal_to) { - *code = F_wait_not; + if (f_compare_dynamic(name, f_status_payload_too_small_s) == F_equal_to) { + *code = F_payload_too_small; return F_okay; } - if (f_compare_dynamic(name, f_status_want_s) == F_equal_to) { - *code = F_want; + if (f_compare_dynamic(name, f_status_payload_too_small_not_s) == F_equal_to) { + *code = F_payload_too_small_not; return F_okay; } - if (f_compare_dynamic(name, f_status_want_not_s) == F_equal_to) { - *code = F_want_not; + if (f_compare_dynamic(name, f_status_pipe_s) == F_equal_to) { + *code = F_pipe; return F_okay; } - if (f_compare_dynamic(name, f_status_wish_s) == F_equal_to) { - *code = F_wish; + if (f_compare_dynamic(name, f_status_pipe_not_s) == F_equal_to) { + *code = F_pipe_not; return F_okay; } - if (f_compare_dynamic(name, f_status_wish_not_s) == F_equal_to) { - *code = F_wish_not; + if (f_compare_dynamic(name, f_status_port_s) == F_equal_to) { + *code = F_port; return F_okay; } - if (f_compare_dynamic(name, f_status_world_s) == F_equal_to) { - *code = F_world; + if (f_compare_dynamic(name, f_status_port_not_s) == F_equal_to) { + *code = F_port_not; return F_okay; } - if (f_compare_dynamic(name, f_status_world_not_s) == F_equal_to) { - *code = F_world_not; + if (f_compare_dynamic(name, f_status_previous_s) == F_equal_to) { + *code = F_previous; return F_okay; } - if (f_compare_dynamic(name, f_status_write_s) == F_equal_to) { - *code = F_write; + if (f_compare_dynamic(name, f_status_previous_not_s) == F_equal_to) { + *code = F_previous_not; return F_okay; } - if (f_compare_dynamic(name, f_status_write_not_s) == F_equal_to) { - *code = F_write_not; + if (f_compare_dynamic(name, f_status_processor_s) == F_equal_to) { + *code = F_processor; return F_okay; } - if (f_compare_dynamic(name, f_status_write_only_s) == F_equal_to) { - *code = F_write_only; + if (f_compare_dynamic(name, f_status_processor_not_s) == F_equal_to) { + *code = F_processor_not; return F_okay; } - if (f_compare_dynamic(name, f_status_yes_s) == F_equal_to) { - *code = F_yes; + if (f_compare_dynamic(name, f_status_progress_s) == F_equal_to) { + *code = F_progress; return F_okay; } - if (f_compare_dynamic(name, f_status_yes_not_s) == F_equal_to) { - *code = F_yes_not; + if (f_compare_dynamic(name, f_status_progress_not_s) == F_equal_to) { + *code = F_progress_not; return F_okay; } - // Return. - if (f_compare_dynamic(name, f_status_debug_s) == F_equal_to) { - *code = F_debug; + if (f_compare_dynamic(name, f_status_prohibited_s) == F_equal_to) { + *code = F_prohibited; return F_okay; } - if (f_compare_dynamic(name, f_status_debug_not_s) == F_equal_to) { - *code = F_debug_not; + if (f_compare_dynamic(name, f_status_prohibited_not_s) == F_equal_to) { + *code = F_prohibited_not; return F_okay; } - if (f_compare_dynamic(name, f_status_error_s) == F_equal_to) { - *code = F_error; + if (f_compare_dynamic(name, f_status_property_s) == F_equal_to) { + *code = F_property; return F_okay; } - if (f_compare_dynamic(name, f_status_error_not_s) == F_equal_to) { - *code = F_error_not; + if (f_compare_dynamic(name, f_status_property_not_s) == F_equal_to) { + *code = F_property_not; return F_okay; } - if (f_compare_dynamic(name, f_status_fine_s) == F_equal_to) { - *code = F_fine; + if (f_compare_dynamic(name, f_status_protocol_s) == F_equal_to) { + *code = F_protocol; return F_okay; } - if (f_compare_dynamic(name, f_status_fine_not_s) == F_equal_to) { - *code = F_fine_not; + if (f_compare_dynamic(name, f_status_protocol_not_s) == F_equal_to) { + *code = F_protocol_not; return F_okay; } - if (f_compare_dynamic(name, f_status_warning_s) == F_equal_to) { - *code = F_warning; + if (f_compare_dynamic(name, f_status_range_s) == F_equal_to) { + *code = F_range; return F_okay; } - if (f_compare_dynamic(name, f_status_warning_not_s) == F_equal_to) { - *code = F_warning_not; + if (f_compare_dynamic(name, f_status_range_not_s) == F_equal_to) { + *code = F_range_not; return F_okay; } - // Array. - if (f_compare_dynamic(name, f_status_array_s) == F_equal_to) { - *code = F_array; + if (f_compare_dynamic(name, f_status_read_s) == F_equal_to) { + *code = F_read; return F_okay; } - if (f_compare_dynamic(name, f_status_array_not_s) == F_equal_to) { - *code = F_array_not; + if (f_compare_dynamic(name, f_status_read_not_s) == F_equal_to) { + *code = F_read_not; return F_okay; } - if (f_compare_dynamic(name, f_status_array_too_large_s) == F_equal_to) { - *code = F_array_too_large; + if (f_compare_dynamic(name, f_status_read_only_s) == F_equal_to) { + *code = F_read_only; return F_okay; } - if (f_compare_dynamic(name, f_status_array_too_small_s) == F_equal_to) { - *code = F_array_too_small; + if (f_compare_dynamic(name, f_status_ready_s) == F_equal_to) { + *code = F_ready; return F_okay; } - // Available. - if (f_compare_dynamic(name, f_status_available_s) == F_equal_to) { - *code = F_available; + if (f_compare_dynamic(name, f_status_ready_not_s) == F_equal_to) { + *code = F_ready_not; return F_okay; } - if (f_compare_dynamic(name, f_status_available_not_s) == F_equal_to) { - *code = F_available_not; + if (f_compare_dynamic(name, f_status_receive_s) == F_equal_to) { + *code = F_receive; return F_okay; } - if (f_compare_dynamic(name, f_status_available_not_address_s) == F_equal_to) { - *code = F_available_not_address; + if (f_compare_dynamic(name, f_status_receive_not_s) == F_equal_to) { + *code = F_receive_not; return F_okay; } - if (f_compare_dynamic(name, f_status_available_not_buffer_s) == F_equal_to) { - *code = F_available_not_buffer; + if (f_compare_dynamic(name, f_status_recover_s) == F_equal_to) { + *code = F_recover; return F_okay; } - if (f_compare_dynamic(name, f_status_available_not_device_s) == F_equal_to) { - *code = F_available_not_device; + if (f_compare_dynamic(name, f_status_recover_not_s) == F_equal_to) { + *code = F_recover_not; return F_okay; } - if (f_compare_dynamic(name, f_status_available_not_pipe_s) == F_equal_to) { - *code = F_available_not_pipe; + if (f_compare_dynamic(name, f_status_recurse_s) == F_equal_to) { + *code = F_recurse; return F_okay; } - if (f_compare_dynamic(name, f_status_available_not_port_s) == F_equal_to) { - *code = F_available_not_port; + if (f_compare_dynamic(name, f_status_recurse_not_s) == F_equal_to) { + *code = F_recurse_not; return F_okay; } - if (f_compare_dynamic(name, f_status_available_not_process_s) == F_equal_to) { - *code = F_available_not_process; + if (f_compare_dynamic(name, f_status_refresh_s) == F_equal_to) { + *code = F_refresh; return F_okay; } - if (f_compare_dynamic(name, f_status_available_not_socket_s) == F_equal_to) { - *code = F_available_not_socket; + if (f_compare_dynamic(name, f_status_refresh_not_s) == F_equal_to) { + *code = F_refresh_not; return F_okay; } - // Busy. - if (f_compare_dynamic(name, f_status_busy_s) == F_equal_to) { - *code = F_busy; + if (f_compare_dynamic(name, f_status_regular_s) == F_equal_to) { + *code = F_regular; return F_okay; } - if (f_compare_dynamic(name, f_status_busy_address_s) == F_equal_to) { - *code = F_busy_address; + if (f_compare_dynamic(name, f_status_regular_not_s) == F_equal_to) { + *code = F_regular_not; return F_okay; } - if (f_compare_dynamic(name, f_status_busy_buffer_s) == F_equal_to) { - *code = F_busy_buffer; + if (f_compare_dynamic(name, f_status_relative_s) == F_equal_to) { + *code = F_relative; return F_okay; } - if (f_compare_dynamic(name, f_status_busy_device_s) == F_equal_to) { - *code = F_busy_device; + if (f_compare_dynamic(name, f_status_relative_not_s) == F_equal_to) { + *code = F_relative_not; return F_okay; } - if (f_compare_dynamic(name, f_status_busy_not_s) == F_equal_to) { - *code = F_busy_not; + if (f_compare_dynamic(name, f_status_reload_s) == F_equal_to) { + *code = F_reload; return F_okay; } - if (f_compare_dynamic(name, f_status_busy_pipe_s) == F_equal_to) { - *code = F_busy_pipe; + if (f_compare_dynamic(name, f_status_reload_not_s) == F_equal_to) { + *code = F_reload_not; return F_okay; } - if (f_compare_dynamic(name, f_status_busy_port_s) == F_equal_to) { - *code = F_busy_port; + if (f_compare_dynamic(name, f_status_remote_s) == F_equal_to) { + *code = F_remote; return F_okay; } - if (f_compare_dynamic(name, f_status_busy_process_s) == F_equal_to) { - *code = F_busy_process; + if (f_compare_dynamic(name, f_status_remote_not_s) == F_equal_to) { + *code = F_remote_not; return F_okay; } - if (f_compare_dynamic(name, f_status_busy_socket_s) == F_equal_to) { - *code = F_busy_socket; + if (f_compare_dynamic(name, f_status_remove_s) == F_equal_to) { + *code = F_remove; return F_okay; } - // Network. - if (f_compare_dynamic(name, f_status_network_s) == F_equal_to) { - *code = F_network; + if (f_compare_dynamic(name, f_status_remove_not_s) == F_equal_to) { + *code = F_remove_not; return F_okay; } - if (f_compare_dynamic(name, f_status_network_busy_s) == F_equal_to) { - *code = F_network_busy; + if (f_compare_dynamic(name, f_status_repeat_s) == F_equal_to) { + *code = F_repeat; return F_okay; } - if (f_compare_dynamic(name, f_status_network_busy_not_s) == F_equal_to) { - *code = F_network_busy_not; + if (f_compare_dynamic(name, f_status_repeat_not_s) == F_equal_to) { + *code = F_repeat_not; return F_okay; } - if (f_compare_dynamic(name, f_status_network_client_s) == F_equal_to) { - *code = F_network_client; + if (f_compare_dynamic(name, f_status_require_s) == F_equal_to) { + *code = F_require; return F_okay; } - if (f_compare_dynamic(name, f_status_network_client_not_s) == F_equal_to) { - *code = F_network_client_not; + if (f_compare_dynamic(name, f_status_require_not_s) == F_equal_to) { + *code = F_require_not; return F_okay; } - if (f_compare_dynamic(name, f_status_network_device_s) == F_equal_to) { - *code = F_network_device; + if (f_compare_dynamic(name, f_status_resource_s) == F_equal_to) { + *code = F_resource; return F_okay; } - if (f_compare_dynamic(name, f_status_network_device_not_s) == F_equal_to) { - *code = F_network_device_not; + if (f_compare_dynamic(name, f_status_resource_not_s) == F_equal_to) { + *code = F_resource_not; return F_okay; } - if (f_compare_dynamic(name, f_status_network_found_s) == F_equal_to) { - *code = F_network_found; + if (f_compare_dynamic(name, f_status_restart_s) == F_equal_to) { + *code = F_restart; return F_okay; } - if (f_compare_dynamic(name, f_status_network_found_not_s) == F_equal_to) { - *code = F_network_found_not; + if (f_compare_dynamic(name, f_status_restart_not_s) == F_equal_to) { + *code = F_restart_not; return F_okay; } - if (f_compare_dynamic(name, f_status_network_lost_s) == F_equal_to) { - *code = F_network_lost; + if (f_compare_dynamic(name, f_status_restore_s) == F_equal_to) { + *code = F_restore; return F_okay; } - if (f_compare_dynamic(name, f_status_network_lost_not_s) == F_equal_to) { - *code = F_network_lost_not; + if (f_compare_dynamic(name, f_status_restore_not_s) == F_equal_to) { + *code = F_restore_not; return F_okay; } - if (f_compare_dynamic(name, f_status_network_not_s) == F_equal_to) { - *code = F_network_not; + if (f_compare_dynamic(name, f_status_revert_s) == F_equal_to) { + *code = F_revert; return F_okay; } - if (f_compare_dynamic(name, f_status_network_reach_s) == F_equal_to) { - *code = F_network_reach; + if (f_compare_dynamic(name, f_status_revert_not_s) == F_equal_to) { + *code = F_revert_not; return F_okay; } - if (f_compare_dynamic(name, f_status_network_reach_client_s) == F_equal_to) { - *code = F_network_reach_client; + if (f_compare_dynamic(name, f_status_schedule_s) == F_equal_to) { + *code = F_schedule; return F_okay; } - if (f_compare_dynamic(name, f_status_network_reach_client_not_s) == F_equal_to) { - *code = F_network_reach_client_not; + if (f_compare_dynamic(name, f_status_schedule_not_s) == F_equal_to) { + *code = F_schedule_not; return F_okay; } - if (f_compare_dynamic(name, f_status_network_reach_not_s) == F_equal_to) { - *code = F_network_reach_not; + if (f_compare_dynamic(name, f_status_search_s) == F_equal_to) { + *code = F_search; return F_okay; } - if (f_compare_dynamic(name, f_status_network_reach_server_s) == F_equal_to) { - *code = F_network_reach_server; + if (f_compare_dynamic(name, f_status_search_not_s) == F_equal_to) { + *code = F_search_not; return F_okay; } - if (f_compare_dynamic(name, f_status_network_reach_server_not_s) == F_equal_to) { - *code = F_network_reach_server_not; + if (f_compare_dynamic(name, f_status_send_s) == F_equal_to) { + *code = F_send; return F_okay; } - if (f_compare_dynamic(name, f_status_network_server_s) == F_equal_to) { - *code = F_network_server; + if (f_compare_dynamic(name, f_status_send_not_s) == F_equal_to) { + *code = F_send_not; return F_okay; } - if (f_compare_dynamic(name, f_status_network_server_not_s) == F_equal_to) { - *code = F_network_server_not; + if (f_compare_dynamic(name, f_status_size_s) == F_equal_to) { + *code = F_size; return F_okay; } - if (f_compare_dynamic(name, f_status_network_time_s) == F_equal_to) { - *code = F_network_time; + if (f_compare_dynamic(name, f_status_size_not_s) == F_equal_to) { + *code = F_size_not; return F_okay; } - if (f_compare_dynamic(name, f_status_network_time_not_s) == F_equal_to) { - *code = F_network_time_not; + if (f_compare_dynamic(name, f_status_signal_s) == F_equal_to) { + *code = F_signal; return F_okay; } - if (f_compare_dynamic(name, f_status_network_version_four_s) == F_equal_to) { - *code = F_network_version_four; + if (f_compare_dynamic(name, f_status_signal_not_s) == F_equal_to) { + *code = F_signal_not; return F_okay; } - if (f_compare_dynamic(name, f_status_network_version_four_not_s) == F_equal_to) { - *code = F_network_version_four_not; + if (f_compare_dynamic(name, f_status_some_s) == F_equal_to) { + *code = F_some; return F_okay; } - if (f_compare_dynamic(name, f_status_network_version_six_s) == F_equal_to) { - *code = F_network_version_six; + if (f_compare_dynamic(name, f_status_some_not_s) == F_equal_to) { + *code = F_some_not; return F_okay; } - if (f_compare_dynamic(name, f_status_network_version_six_not_s) == F_equal_to) { - *code = F_network_version_six_not; + if (f_compare_dynamic(name, f_status_space_s) == F_equal_to) { + *code = F_space; return F_okay; } - // Number. - if (f_compare_dynamic(name, f_status_number_s) == F_equal_to) { - *code = F_number; + if (f_compare_dynamic(name, f_status_space_not_s) == F_equal_to) { + *code = F_space_not; return F_okay; } - if (f_compare_dynamic(name, f_status_number_decimal_s) == F_equal_to) { - *code = F_number_decimal; + if (f_compare_dynamic(name, f_status_skip_s) == F_equal_to) { + *code = F_skip; return F_okay; } - if (f_compare_dynamic(name, f_status_number_decimal_not_s) == F_equal_to) { - *code = F_number_decimal_not; + if (f_compare_dynamic(name, f_status_skip_not_s) == F_equal_to) { + *code = F_skip_not; return F_okay; } - if (f_compare_dynamic(name, f_status_number_divide_by_zero_s) == F_equal_to) { - *code = F_number_divide_by_zero; + if (f_compare_dynamic(name, f_status_start_s) == F_equal_to) { + *code = F_start; return F_okay; } - if (f_compare_dynamic(name, f_status_number_negative_s) == F_equal_to) { - *code = F_number_negative; + if (f_compare_dynamic(name, f_status_start_not_s) == F_equal_to) { + *code = F_start_not; return F_okay; } - if (f_compare_dynamic(name, f_status_number_negative_not_s) == F_equal_to) { - *code = F_number_negative_not; + if (f_compare_dynamic(name, f_status_status_s) == F_equal_to) { + *code = F_status; return F_okay; } - if (f_compare_dynamic(name, f_status_number_not_s) == F_equal_to) { - *code = F_number_not; + if (f_compare_dynamic(name, f_status_status_not_s) == F_equal_to) { + *code = F_status_not; return F_okay; } - if (f_compare_dynamic(name, f_status_number_overflow_s) == F_equal_to) { - *code = F_number_overflow; + if (f_compare_dynamic(name, f_status_stop_s) == F_equal_to) { + *code = F_stop; return F_okay; } - if (f_compare_dynamic(name, f_status_number_positive_s) == F_equal_to) { - *code = F_number_positive; + if (f_compare_dynamic(name, f_status_stop_not_s) == F_equal_to) { + *code = F_stop_not; return F_okay; } - if (f_compare_dynamic(name, f_status_number_positive_not_s) == F_equal_to) { - *code = F_number_positive_not; + if (f_compare_dynamic(name, f_status_store_s) == F_equal_to) { + *code = F_store; return F_okay; } - if (f_compare_dynamic(name, f_status_number_too_large_s) == F_equal_to) { - *code = F_number_too_large; + if (f_compare_dynamic(name, f_status_store_not_s) == F_equal_to) { + *code = F_store_not; return F_okay; } - if (f_compare_dynamic(name, f_status_number_too_small_s) == F_equal_to) { - *code = F_number_too_small; + if (f_compare_dynamic(name, f_status_stream_s) == F_equal_to) { + *code = F_stream; return F_okay; } - if (f_compare_dynamic(name, f_status_number_underflow_s) == F_equal_to) { - *code = F_number_underflow; + if (f_compare_dynamic(name, f_status_stream_not_s) == F_equal_to) { + *code = F_stream_not; return F_okay; } - if (f_compare_dynamic(name, f_status_number_whole_s) == F_equal_to) { - *code = F_number_whole; + if (f_compare_dynamic(name, f_status_string_s) == F_equal_to) { + *code = F_string; return F_okay; } - if (f_compare_dynamic(name, f_status_number_whole_not_s) == F_equal_to) { - *code = F_number_whole_not; + if (f_compare_dynamic(name, f_status_string_not_s) == F_equal_to) { + *code = F_string_not; return F_okay; } - if (f_compare_dynamic(name, f_status_number_zero_s) == F_equal_to) { - *code = F_number_zero; + if (f_compare_dynamic(name, f_status_string_too_large_s) == F_equal_to) { + *code = F_string_too_large; return F_okay; } - if (f_compare_dynamic(name, f_status_number_zero_not_s) == F_equal_to) { - *code = F_number_zero_not; + if (f_compare_dynamic(name, f_status_string_too_small_s) == F_equal_to) { + *code = F_string_too_small; return F_okay; } - // Buffer. - if (f_compare_dynamic(name, f_status_buffer_s) == F_equal_to) { - *code = F_buffer; + if (f_compare_dynamic(name, f_status_success_s) == F_equal_to) { + *code = F_success; return F_okay; } - if (f_compare_dynamic(name, f_status_buffer_not_s) == F_equal_to) { - *code = F_buffer_not; + if (f_compare_dynamic(name, f_status_success_not_s) == F_equal_to) { + *code = F_success_not; return F_okay; } - if (f_compare_dynamic(name, f_status_buffer_overflow_s) == F_equal_to) { - *code = F_buffer_overflow; + if (f_compare_dynamic(name, f_status_support_s) == F_equal_to) { + *code = F_support; return F_okay; } - if (f_compare_dynamic(name, f_status_buffer_too_large_s) == F_equal_to) { - *code = F_buffer_too_large; + if (f_compare_dynamic(name, f_status_support_not_s) == F_equal_to) { + *code = F_support_not; return F_okay; } - if (f_compare_dynamic(name, f_status_buffer_too_small_s) == F_equal_to) { - *code = F_buffer_too_small; + if (f_compare_dynamic(name, f_status_syntax_s) == F_equal_to) { + *code = F_syntax; return F_okay; } - if (f_compare_dynamic(name, f_status_buffer_underflow_s) == F_equal_to) { - *code = F_buffer_underflow; + if (f_compare_dynamic(name, f_status_syntax_not_s) == F_equal_to) { + *code = F_syntax_not; return F_okay; } - if (f_compare_dynamic(name, f_status_complete_not_utf_s) == F_equal_to) { - *code = F_complete_not_utf; + if (f_compare_dynamic(name, f_status_terminate_s) == F_equal_to) { + *code = F_terminate; return F_okay; } - if (f_compare_dynamic(name, f_status_complete_not_utf_block_s) == F_equal_to) { - *code = F_complete_not_utf_block; + if (f_compare_dynamic(name, f_status_terminate_not_s) == F_equal_to) { + *code = F_terminate_not; return F_okay; } - if (f_compare_dynamic(name, f_status_complete_not_utf_eoa_s) == F_equal_to) { - *code = F_complete_not_utf_eoa; + if (f_compare_dynamic(name, f_status_test_s) == F_equal_to) { + *code = F_test; return F_okay; } - if (f_compare_dynamic(name, f_status_complete_not_utf_eof_s) == F_equal_to) { - *code = F_complete_not_utf_eof; + if (f_compare_dynamic(name, f_status_test_not_s) == F_equal_to) { + *code = F_test_not; return F_okay; } - if (f_compare_dynamic(name, f_status_complete_not_utf_eol_s) == F_equal_to) { - *code = F_complete_not_utf_eol; + if (f_compare_dynamic(name, f_status_thread_s) == F_equal_to) { + *code = F_thread; return F_okay; } - if (f_compare_dynamic(name, f_status_complete_not_utf_eos_s) == F_equal_to) { - *code = F_complete_not_utf_eos; + if (f_compare_dynamic(name, f_status_thread_not_s) == F_equal_to) { + *code = F_thread_not; return F_okay; } - if (f_compare_dynamic(name, f_status_complete_not_utf_start_s) == F_equal_to) { - *code = F_complete_not_utf_start; + if (f_compare_dynamic(name, f_status_time_s) == F_equal_to) { + *code = F_time; return F_okay; } - if (f_compare_dynamic(name, f_status_complete_not_utf_stop_s) == F_equal_to) { - *code = F_complete_not_utf_stop; + if (f_compare_dynamic(name, f_status_time_not_s) == F_equal_to) { + *code = F_time_not; return F_okay; } - if (f_compare_dynamic(name, f_status_data_s) == F_equal_to) { - *code = F_data; + if (f_compare_dynamic(name, f_status_time_out_s) == F_equal_to) { + *code = F_time_out; return F_okay; } - if (f_compare_dynamic(name, f_status_data_not_s) == F_equal_to) { - *code = F_data_not; + if (f_compare_dynamic(name, f_status_too_large_s) == F_equal_to) { + *code = F_too_large; return F_okay; } - if (f_compare_dynamic(name, f_status_data_not_block_s) == F_equal_to) { - *code = F_data_not_block; + if (f_compare_dynamic(name, f_status_too_small_s) == F_equal_to) { + *code = F_too_small; return F_okay; } - if (f_compare_dynamic(name, f_status_data_not_eoa_s) == F_equal_to) { - *code = F_data_not_eoa; + if (f_compare_dynamic(name, f_status_top_s) == F_equal_to) { + *code = F_top; return F_okay; } - if (f_compare_dynamic(name, f_status_data_not_eof_s) == F_equal_to) { - *code = F_data_not_eof; + if (f_compare_dynamic(name, f_status_top_not_s) == F_equal_to) { + *code = F_top_not; return F_okay; } - if (f_compare_dynamic(name, f_status_data_not_eol_s) == F_equal_to) { - *code = F_data_not_eol; + if (f_compare_dynamic(name, f_status_type_s) == F_equal_to) { + *code = F_type; return F_okay; } - if (f_compare_dynamic(name, f_status_data_not_eos_s) == F_equal_to) { - *code = F_data_not_eos; + if (f_compare_dynamic(name, f_status_type_not_s) == F_equal_to) { + *code = F_type_not; return F_okay; } - if (f_compare_dynamic(name, f_status_data_not_start_s) == F_equal_to) { - *code = F_data_not_start; + if (f_compare_dynamic(name, f_status_unload_s) == F_equal_to) { + *code = F_unload; return F_okay; } - if (f_compare_dynamic(name, f_status_data_not_stop_s) == F_equal_to) { - *code = F_data_not_stop; + if (f_compare_dynamic(name, f_status_unload_not_s) == F_equal_to) { + *code = F_unload_not; return F_okay; } - // End. - if (f_compare_dynamic(name, f_status_end_s) == F_equal_to) { - *code = F_end; + if (f_compare_dynamic(name, f_status_user_s) == F_equal_to) { + *code = F_user; return F_okay; } - if (f_compare_dynamic(name, f_status_end_not_s) == F_equal_to) { - *code = F_end_not; + if (f_compare_dynamic(name, f_status_user_not_s) == F_equal_to) { + *code = F_user_not; return F_okay; } - if (f_compare_dynamic(name, f_status_end_not_block_s) == F_equal_to) { - *code = F_end_not_block; + if (f_compare_dynamic(name, f_status_utf_s) == F_equal_to) { + *code = F_utf; return F_okay; } - if (f_compare_dynamic(name, f_status_end_not_eoa_s) == F_equal_to) { - *code = F_end_not_eoa; + if (f_compare_dynamic(name, f_status_utf_fragment_s) == F_equal_to) { + *code = F_utf_fragment; return F_okay; } - if (f_compare_dynamic(name, f_status_end_not_eof_s) == F_equal_to) { - *code = F_end_not_eof; + if (f_compare_dynamic(name, f_status_utf_fragment_not_s) == F_equal_to) { + *code = F_utf_fragment_not; return F_okay; } - if (f_compare_dynamic(name, f_status_end_not_eol_s) == F_equal_to) { - *code = F_end_not_eol; + if (f_compare_dynamic(name, f_status_utf_not_s) == F_equal_to) { + *code = F_utf_not; return F_okay; } - if (f_compare_dynamic(name, f_status_end_not_eos_s) == F_equal_to) { - *code = F_end_not_eos; + if (f_compare_dynamic(name, f_status_valid_s) == F_equal_to) { + *code = F_valid; return F_okay; } - if (f_compare_dynamic(name, f_status_end_not_group_s) == F_equal_to) { - *code = F_end_not_group; + if (f_compare_dynamic(name, f_status_valid_not_s) == F_equal_to) { + *code = F_valid_not; return F_okay; } - if (f_compare_dynamic(name, f_status_end_not_group_block_s) == F_equal_to) { - *code = F_end_not_group_block; + if (f_compare_dynamic(name, f_status_value_s) == F_equal_to) { + *code = F_value; return F_okay; } - if (f_compare_dynamic(name, f_status_end_not_group_eoa_s) == F_equal_to) { - *code = F_end_not_group_eoa; + if (f_compare_dynamic(name, f_status_value_not_s) == F_equal_to) { + *code = F_value_not; return F_okay; } - if (f_compare_dynamic(name, f_status_end_not_group_eof_s) == F_equal_to) { - *code = F_end_not_group_eof; + if (f_compare_dynamic(name, f_status_wait_s) == F_equal_to) { + *code = F_wait; return F_okay; } - if (f_compare_dynamic(name, f_status_end_not_group_eol_s) == F_equal_to) { - *code = F_end_not_group_eol; + if (f_compare_dynamic(name, f_status_wait_not_s) == F_equal_to) { + *code = F_wait_not; return F_okay; } - if (f_compare_dynamic(name, f_status_end_not_group_eos_s) == F_equal_to) { - *code = F_end_not_group_eos; + if (f_compare_dynamic(name, f_status_want_s) == F_equal_to) { + *code = F_want; return F_okay; } - if (f_compare_dynamic(name, f_status_end_not_group_start_s) == F_equal_to) { - *code = F_end_not_group_start; + if (f_compare_dynamic(name, f_status_want_not_s) == F_equal_to) { + *code = F_want_not; return F_okay; } - if (f_compare_dynamic(name, f_status_end_not_group_stop_s) == F_equal_to) { - *code = F_end_not_group_stop; + if (f_compare_dynamic(name, f_status_warning_s) == F_equal_to) { + *code = F_warning; return F_okay; } - if (f_compare_dynamic(name, f_status_end_not_nest_s) == F_equal_to) { - *code = F_end_not_nest; + if (f_compare_dynamic(name, f_status_warning_not_s) == F_equal_to) { + *code = F_warning_not; return F_okay; } - if (f_compare_dynamic(name, f_status_end_not_nest_block_s) == F_equal_to) { - *code = F_end_not_nest_block; + if (f_compare_dynamic(name, f_status_wish_s) == F_equal_to) { + *code = F_wish; return F_okay; } - if (f_compare_dynamic(name, f_status_end_not_nest_eoa_s) == F_equal_to) { - *code = F_end_not_nest_eoa; + if (f_compare_dynamic(name, f_status_wish_not_s) == F_equal_to) { + *code = F_wish_not; return F_okay; } - if (f_compare_dynamic(name, f_status_end_not_nest_eof_s) == F_equal_to) { - *code = F_end_not_nest_eof; + if (f_compare_dynamic(name, f_status_world_s) == F_equal_to) { + *code = F_world; return F_okay; } - if (f_compare_dynamic(name, f_status_end_not_nest_eol_s) == F_equal_to) { - *code = F_end_not_nest_eol; + if (f_compare_dynamic(name, f_status_world_not_s) == F_equal_to) { + *code = F_world_not; return F_okay; } - if (f_compare_dynamic(name, f_status_end_not_nest_eos_s) == F_equal_to) { - *code = F_end_not_nest_eos; + if (f_compare_dynamic(name, f_status_write_s) == F_equal_to) { + *code = F_write; return F_okay; } - if (f_compare_dynamic(name, f_status_end_not_nest_start_s) == F_equal_to) { - *code = F_end_not_nest_start; + if (f_compare_dynamic(name, f_status_write_not_s) == F_equal_to) { + *code = F_write_not; return F_okay; } - if (f_compare_dynamic(name, f_status_end_not_nest_stop_s) == F_equal_to) { - *code = F_end_not_nest_stop; + if (f_compare_dynamic(name, f_status_write_only_s) == F_equal_to) { + *code = F_write_only; return F_okay; } - if (f_compare_dynamic(name, f_status_end_not_start_s) == F_equal_to) { - *code = F_end_not_start; + if (f_compare_dynamic(name, f_status_yes_s) == F_equal_to) { + *code = F_yes; return F_okay; } - if (f_compare_dynamic(name, f_status_end_not_stop_s) == F_equal_to) { - *code = F_end_not_stop; + if (f_compare_dynamic(name, f_status_yes_not_s) == F_equal_to) { + *code = F_yes_not; return F_okay; } diff --git a/level_1/fl_status_string/tests/unit/c/test-status_string-from.c b/level_1/fl_status_string/tests/unit/c/test-status_string-from.c index 7f0c94c..08bdc96 100644 --- a/level_1/fl_status_string/tests/unit/c/test-status_string-from.c +++ b/level_1/fl_status_string/tests/unit/c/test-status_string-from.c @@ -133,10 +133,23 @@ void test__fl_status_string_from__works(void **state) { F_again_not, F_all, F_all_not, + F_array, + F_array_not, + F_array_too_large, + F_array_too_small, F_ascii, F_ascii_not, F_atomic, F_atomic_not, + F_available, + F_available_not, + F_available_not_address, + F_available_not_buffer, + F_available_not_device, + F_available_not_pipe, + F_available_not_port, + F_available_not_process, + F_available_not_socket, F_base, F_base_not, F_begin, @@ -151,6 +164,21 @@ void test__fl_status_string_from__works(void **state) { F_bound_not, F_break, F_break_not, + F_buffer, + F_buffer_not, + F_buffer_overflow, + F_buffer_too_large, + F_buffer_too_small, + F_buffer_underflow, + F_busy, + F_busy_address, + F_busy_buffer, + F_busy_device, + F_busy_not, + F_busy_pipe, + F_busy_port, + F_busy_process, + F_busy_socket, F_call, F_call_not, F_capability, @@ -161,6 +189,14 @@ void test__fl_status_string_from__works(void **state) { F_child_not, F_complete, F_complete_not, + F_complete_not_utf, + F_complete_not_utf_block, + F_complete_not_utf_eoa, + F_complete_not_utf_eof, + F_complete_not_utf_eol, + F_complete_not_utf_eos, + F_complete_not_utf_start, + F_complete_not_utf_stop, F_connect, F_connect_not, F_connect_refuse, @@ -177,10 +213,21 @@ void test__fl_status_string_from__works(void **state) { F_control_group_not, F_critical, F_critical_not, + F_data, + F_data_not, + F_data_not_block, + F_data_not_eoa, + F_data_not_eof, + F_data_not_eol, + F_data_not_eos, + F_data_not_start, + F_data_not_stop, F_dead, F_dead_not, F_deadlock, F_deadlock_not, + F_debug, + F_debug_not, F_descriptor, F_descriptor_not, F_desire, @@ -205,6 +252,31 @@ void test__fl_status_string_from__works(void **state) { F_enable_not, F_encoding, F_encoding_not, + F_end, + F_end_not, + F_end_not_block, + F_end_not_eoa, + F_end_not_eof, + F_end_not_eol, + F_end_not_eos, + F_end_not_group, + F_end_not_group_block, + F_end_not_group_eoa, + F_end_not_group_eof, + F_end_not_group_eol, + F_end_not_group_eos, + F_end_not_group_start, + F_end_not_group_stop, + F_end_not_nest, + F_end_not_nest_block, + F_end_not_nest_eoa, + F_end_not_nest_eof, + F_end_not_nest_eol, + F_end_not_nest_eos, + F_end_not_nest_start, + F_end_not_nest_stop, + F_end_not_start, + F_end_not_stop, F_endian, F_endian_big, F_endian_little, @@ -219,6 +291,8 @@ void test__fl_status_string_from__works(void **state) { F_eol_not, F_eos, F_eos_not, + F_error, + F_error_not, F_execute, F_execute_not, F_exist, @@ -231,6 +305,8 @@ void test__fl_status_string_from__works(void **state) { F_family_not, F_fifo, F_fifo_not, + F_fine, + F_fine_not, F_first, F_first_not, F_footer, @@ -310,6 +386,32 @@ void test__fl_status_string_from__works(void **state) { F_name_not, F_need, F_need_not, + F_network, + F_network_busy, + F_network_busy_not, + F_network_client, + F_network_client_not, + F_network_device, + F_network_device_not, + F_network_found, + F_network_found_not, + F_network_lost, + F_network_lost_not, + F_network_not, + F_network_reach, + F_network_reach_client, + F_network_reach_client_not, + F_network_reach_not, + F_network_reach_server, + F_network_reach_server_not, + F_network_server, + F_network_server_not, + F_network_time, + F_network_time_not, + F_network_version_four, + F_network_version_four_not, + F_network_version_six, + F_network_version_six_not, F_next, F_next_not, F_nice, @@ -318,6 +420,23 @@ void test__fl_status_string_from__works(void **state) { F_no_not, F_none, F_none_not, + F_number, + F_number_decimal, + F_number_decimal_not, + F_number_divide_by_zero, + F_number_negative, + F_number_negative_not, + F_number_not, + F_number_overflow, + F_number_positive, + F_number_positive_not, + F_number_too_large, + F_number_too_small, + F_number_underflow, + F_number_whole, + F_number_whole_not, + F_number_zero, + F_number_zero_not, F_object, F_object_not, F_once, @@ -464,6 +583,8 @@ void test__fl_status_string_from__works(void **state) { F_wait_not, F_want, F_want_not, + F_warning, + F_warning_not, F_wish, F_wish_not, F_world, @@ -473,127 +594,6 @@ void test__fl_status_string_from__works(void **state) { F_write_only, F_yes, F_yes_not, - F_debug, - F_debug_not, - F_error, - F_error_not, - F_fine, - F_fine_not, - F_warning, - F_warning_not, - F_array, - F_array_not, - F_array_too_large, - F_array_too_small, - F_available, - F_available_not, - F_available_not_address, - F_available_not_buffer, - F_available_not_device, - F_available_not_pipe, - F_available_not_port, - F_available_not_process, - F_available_not_socket, - F_busy, - F_busy_address, - F_busy_buffer, - F_busy_device, - F_busy_not, - F_busy_pipe, - F_busy_port, - F_busy_process, - F_busy_socket, - F_network, - F_network_busy, - F_network_busy_not, - F_network_client, - F_network_client_not, - F_network_device, - F_network_device_not, - F_network_found, - F_network_found_not, - F_network_lost, - F_network_lost_not, - F_network_not, - F_network_reach, - F_network_reach_client, - F_network_reach_client_not, - F_network_reach_not, - F_network_reach_server, - F_network_reach_server_not, - F_network_server, - F_network_server_not, - F_network_time, - F_network_time_not, - F_network_version_four, - F_network_version_four_not, - F_network_version_six, - F_network_version_six_not, - F_number, - F_number_decimal, - F_number_decimal_not, - F_number_divide_by_zero, - F_number_negative, - F_number_negative_not, - F_number_not, - F_number_overflow, - F_number_positive, - F_number_positive_not, - F_number_too_large, - F_number_too_small, - F_number_underflow, - F_number_whole, - F_number_whole_not, - F_number_zero, - F_number_zero_not, - F_buffer, - F_buffer_not, - F_buffer_overflow, - F_buffer_too_large, - F_buffer_too_small, - F_buffer_underflow, - F_complete_not_utf, - F_complete_not_utf_block, - F_complete_not_utf_eoa, - F_complete_not_utf_eof, - F_complete_not_utf_eol, - F_complete_not_utf_eos, - F_complete_not_utf_start, - F_complete_not_utf_stop, - F_data, - F_data_not, - F_data_not_block, - F_data_not_eoa, - F_data_not_eof, - F_data_not_eol, - F_data_not_eos, - F_data_not_start, - F_data_not_stop, - F_end, - F_end_not, - F_end_not_block, - F_end_not_eoa, - F_end_not_eof, - F_end_not_eol, - F_end_not_eos, - F_end_not_group, - F_end_not_group_block, - F_end_not_group_eoa, - F_end_not_group_eof, - F_end_not_group_eol, - F_end_not_group_eos, - F_end_not_group_start, - F_end_not_group_stop, - F_end_not_nest, - F_end_not_nest_block, - F_end_not_nest_eoa, - F_end_not_nest_eof, - F_end_not_nest_eol, - F_end_not_nest_eos, - F_end_not_nest_start, - F_end_not_nest_stop, - F_end_not_start, - F_end_not_stop, F_process, F_process_not, F_process_too_many, @@ -802,10 +802,23 @@ void test__fl_status_string_from__works(void **state) { f_status_again_not_s, f_status_all_s, f_status_all_not_s, + f_status_array_s, + f_status_array_not_s, + f_status_array_too_large_s, + f_status_array_too_small_s, f_status_ascii_s, f_status_ascii_not_s, f_status_atomic_s, f_status_atomic_not_s, + f_status_available_s, + f_status_available_not_s, + f_status_available_not_address_s, + f_status_available_not_buffer_s, + f_status_available_not_device_s, + f_status_available_not_pipe_s, + f_status_available_not_port_s, + f_status_available_not_process_s, + f_status_available_not_socket_s, f_status_base_s, f_status_base_not_s, f_status_begin_s, @@ -820,6 +833,21 @@ void test__fl_status_string_from__works(void **state) { f_status_bound_not_s, f_status_break_s, f_status_break_not_s, + f_status_buffer_s, + f_status_buffer_not_s, + f_status_buffer_overflow_s, + f_status_buffer_too_large_s, + f_status_buffer_too_small_s, + f_status_buffer_underflow_s, + f_status_busy_s, + f_status_busy_address_s, + f_status_busy_buffer_s, + f_status_busy_device_s, + f_status_busy_not_s, + f_status_busy_pipe_s, + f_status_busy_port_s, + f_status_busy_process_s, + f_status_busy_socket_s, f_status_call_s, f_status_call_not_s, f_status_capability_s, @@ -830,6 +858,14 @@ void test__fl_status_string_from__works(void **state) { f_status_child_not_s, f_status_complete_s, f_status_complete_not_s, + f_status_complete_not_utf_s, + f_status_complete_not_utf_block_s, + f_status_complete_not_utf_eoa_s, + f_status_complete_not_utf_eof_s, + f_status_complete_not_utf_eol_s, + f_status_complete_not_utf_eos_s, + f_status_complete_not_utf_start_s, + f_status_complete_not_utf_stop_s, f_status_connect_s, f_status_connect_not_s, f_status_connect_refuse_s, @@ -846,10 +882,21 @@ void test__fl_status_string_from__works(void **state) { f_status_control_group_not_s, f_status_critical_s, f_status_critical_not_s, + f_status_data_s, + f_status_data_not_s, + f_status_data_not_block_s, + f_status_data_not_eoa_s, + f_status_data_not_eof_s, + f_status_data_not_eol_s, + f_status_data_not_eos_s, + f_status_data_not_start_s, + f_status_data_not_stop_s, f_status_dead_s, f_status_dead_not_s, f_status_deadlock_s, f_status_deadlock_not_s, + f_status_debug_s, + f_status_debug_not_s, f_status_descriptor_s, f_status_descriptor_not_s, f_status_desire_s, @@ -874,6 +921,31 @@ void test__fl_status_string_from__works(void **state) { f_status_enable_not_s, f_status_encoding_s, f_status_encoding_not_s, + f_status_end_s, + f_status_end_not_s, + f_status_end_not_block_s, + f_status_end_not_eoa_s, + f_status_end_not_eof_s, + f_status_end_not_eol_s, + f_status_end_not_eos_s, + f_status_end_not_group_s, + f_status_end_not_group_block_s, + f_status_end_not_group_eoa_s, + f_status_end_not_group_eof_s, + f_status_end_not_group_eol_s, + f_status_end_not_group_eos_s, + f_status_end_not_group_start_s, + f_status_end_not_group_stop_s, + f_status_end_not_nest_s, + f_status_end_not_nest_block_s, + f_status_end_not_nest_eoa_s, + f_status_end_not_nest_eof_s, + f_status_end_not_nest_eol_s, + f_status_end_not_nest_eos_s, + f_status_end_not_nest_start_s, + f_status_end_not_nest_stop_s, + f_status_end_not_start_s, + f_status_end_not_stop_s, f_status_endian_s, f_status_endian_big_s, f_status_endian_little_s, @@ -888,6 +960,8 @@ void test__fl_status_string_from__works(void **state) { f_status_eol_not_s, f_status_eos_s, f_status_eos_not_s, + f_status_error_s, + f_status_error_not_s, f_status_execute_s, f_status_execute_not_s, f_status_exist_s, @@ -900,6 +974,8 @@ void test__fl_status_string_from__works(void **state) { f_status_family_not_s, f_status_fifo_s, f_status_fifo_not_s, + f_status_fine_s, + f_status_fine_not_s, f_status_first_s, f_status_first_not_s, f_status_footer_s, @@ -979,6 +1055,32 @@ void test__fl_status_string_from__works(void **state) { f_status_name_not_s, f_status_need_s, f_status_need_not_s, + f_status_network_s, + f_status_network_busy_s, + f_status_network_busy_not_s, + f_status_network_client_s, + f_status_network_client_not_s, + f_status_network_device_s, + f_status_network_device_not_s, + f_status_network_found_s, + f_status_network_found_not_s, + f_status_network_lost_s, + f_status_network_lost_not_s, + f_status_network_not_s, + f_status_network_reach_s, + f_status_network_reach_client_s, + f_status_network_reach_client_not_s, + f_status_network_reach_not_s, + f_status_network_reach_server_s, + f_status_network_reach_server_not_s, + f_status_network_server_s, + f_status_network_server_not_s, + f_status_network_time_s, + f_status_network_time_not_s, + f_status_network_version_four_s, + f_status_network_version_four_not_s, + f_status_network_version_six_s, + f_status_network_version_six_not_s, f_status_next_s, f_status_next_not_s, f_status_nice_s, @@ -987,6 +1089,23 @@ void test__fl_status_string_from__works(void **state) { f_status_no_not_s, f_status_none_s, f_status_none_not_s, + f_status_number_s, + f_status_number_decimal_s, + f_status_number_decimal_not_s, + f_status_number_divide_by_zero_s, + f_status_number_negative_s, + f_status_number_negative_not_s, + f_status_number_not_s, + f_status_number_overflow_s, + f_status_number_positive_s, + f_status_number_positive_not_s, + f_status_number_too_large_s, + f_status_number_too_small_s, + f_status_number_underflow_s, + f_status_number_whole_s, + f_status_number_whole_not_s, + f_status_number_zero_s, + f_status_number_zero_not_s, f_status_object_s, f_status_object_not_s, f_status_once_s, @@ -1133,6 +1252,8 @@ void test__fl_status_string_from__works(void **state) { f_status_wait_not_s, f_status_want_s, f_status_want_not_s, + f_status_warning_s, + f_status_warning_not_s, f_status_wish_s, f_status_wish_not_s, f_status_world_s, @@ -1142,127 +1263,6 @@ void test__fl_status_string_from__works(void **state) { f_status_write_only_s, f_status_yes_s, f_status_yes_not_s, - f_status_debug_s, - f_status_debug_not_s, - f_status_error_s, - f_status_error_not_s, - f_status_fine_s, - f_status_fine_not_s, - f_status_warning_s, - f_status_warning_not_s, - f_status_array_s, - f_status_array_not_s, - f_status_array_too_large_s, - f_status_array_too_small_s, - f_status_available_s, - f_status_available_not_s, - f_status_available_not_address_s, - f_status_available_not_buffer_s, - f_status_available_not_device_s, - f_status_available_not_pipe_s, - f_status_available_not_port_s, - f_status_available_not_process_s, - f_status_available_not_socket_s, - f_status_busy_s, - f_status_busy_address_s, - f_status_busy_buffer_s, - f_status_busy_device_s, - f_status_busy_not_s, - f_status_busy_pipe_s, - f_status_busy_port_s, - f_status_busy_process_s, - f_status_busy_socket_s, - f_status_network_s, - f_status_network_busy_s, - f_status_network_busy_not_s, - f_status_network_client_s, - f_status_network_client_not_s, - f_status_network_device_s, - f_status_network_device_not_s, - f_status_network_found_s, - f_status_network_found_not_s, - f_status_network_lost_s, - f_status_network_lost_not_s, - f_status_network_not_s, - f_status_network_reach_s, - f_status_network_reach_client_s, - f_status_network_reach_client_not_s, - f_status_network_reach_not_s, - f_status_network_reach_server_s, - f_status_network_reach_server_not_s, - f_status_network_server_s, - f_status_network_server_not_s, - f_status_network_time_s, - f_status_network_time_not_s, - f_status_network_version_four_s, - f_status_network_version_four_not_s, - f_status_network_version_six_s, - f_status_network_version_six_not_s, - f_status_number_s, - f_status_number_decimal_s, - f_status_number_decimal_not_s, - f_status_number_divide_by_zero_s, - f_status_number_negative_s, - f_status_number_negative_not_s, - f_status_number_not_s, - f_status_number_overflow_s, - f_status_number_positive_s, - f_status_number_positive_not_s, - f_status_number_too_large_s, - f_status_number_too_small_s, - f_status_number_underflow_s, - f_status_number_whole_s, - f_status_number_whole_not_s, - f_status_number_zero_s, - f_status_number_zero_not_s, - f_status_buffer_s, - f_status_buffer_not_s, - f_status_buffer_overflow_s, - f_status_buffer_too_large_s, - f_status_buffer_too_small_s, - f_status_buffer_underflow_s, - f_status_complete_not_utf_s, - f_status_complete_not_utf_block_s, - f_status_complete_not_utf_eoa_s, - f_status_complete_not_utf_eof_s, - f_status_complete_not_utf_eol_s, - f_status_complete_not_utf_eos_s, - f_status_complete_not_utf_start_s, - f_status_complete_not_utf_stop_s, - f_status_data_s, - f_status_data_not_s, - f_status_data_not_block_s, - f_status_data_not_eoa_s, - f_status_data_not_eof_s, - f_status_data_not_eol_s, - f_status_data_not_eos_s, - f_status_data_not_start_s, - f_status_data_not_stop_s, - f_status_end_s, - f_status_end_not_s, - f_status_end_not_block_s, - f_status_end_not_eoa_s, - f_status_end_not_eof_s, - f_status_end_not_eol_s, - f_status_end_not_eos_s, - f_status_end_not_group_s, - f_status_end_not_group_block_s, - f_status_end_not_group_eoa_s, - f_status_end_not_group_eof_s, - f_status_end_not_group_eol_s, - f_status_end_not_group_eos_s, - f_status_end_not_group_start_s, - f_status_end_not_group_stop_s, - f_status_end_not_nest_s, - f_status_end_not_nest_block_s, - f_status_end_not_nest_eoa_s, - f_status_end_not_nest_eof_s, - f_status_end_not_nest_eol_s, - f_status_end_not_nest_eos_s, - f_status_end_not_nest_start_s, - f_status_end_not_nest_stop_s, - f_status_end_not_start_s, - f_status_end_not_stop_s, f_status_process_s, f_status_process_not_s, f_status_process_too_many_s, -- 1.8.3.1