Freeciv-3.2
|
#include "support.h"
Go to the source code of this file.
Macros | |
#define | strvec_iterate(psv, str) |
#define | strvec_iterate_end |
Definition at line 61 of file string_vector.h.
#define strvec_iterate_end |
Definition at line 68 of file string_vector.h.
Returns TRUE if stv1 and stv2 are equal.
Definition at line 351 of file string_vector.c.
Insert a string at the end of the vector.
Definition at line 278 of file string_vector.c.
Referenced by base_get_dirs(), fileinfolist(), get_effect_list_req_text(), get_themes_list(), get_tileset_list(), helptext_government(), helptext_unit(), insert_allows_single(), luascript_func_check(), mapimg_get_format_list(), values_dlg::open_help(), setting_bitwise_to_str(), strvec_from_str(), strvec_insert(), strvec_store(), and video_mode_list().
Remove all strings from the vector.
Definition at line 159 of file string_vector.c.
Referenced by helptext_unit(), tab_building::initialize_new_bldg(), tab_counter::initialize_new_counter(), tab_extras::initialize_new_extra(), tab_good::initialize_new_good(), tab_gov::initialize_new_gov(), tab_multiplier::initialize_new_multiplier(), tab_tech::initialize_new_tech(), tab_terrains::initialize_new_terrain(), tab_unit::initialize_new_utype(), strvec_copy(), strvec_destroy(), strvec_from_str(), strvec_remove(), strvec_reserve(), and strvec_store().
Copy a string vector.
Definition at line 237 of file string_vector.c.
Returns the data of the vector.
Definition at line 372 of file string_vector.c.
Destroy a string vector.
Definition at line 71 of file string_vector.c.
Referenced by counters_free(), enum_widget_destroy(), extras_free(), free_data_dir_names(), get_effect_list_req_text(), get_theme_list(), get_tileset_list(), goods_free(), government_free(), helptext_government(), helptext_unit(), improvement_free(), insert_allows_single(), multipliers_free(), researches_free(), server_option_free(), setting_bitwise_to_str(), specialists_free(), tech_free(), terrains_free(), themespec_try_read(), tilespec_try_read(), unit_classes_free(), unit_type_free(), and video_mode_widget_destroy().
Build the string vector from a string until 'str_size' bytes are read. Passing -1 for 'str_size' will assume 'str' as the expected format. Note it's a bit dangerous.
This string format is a list of strings separated by 'separator'.
See also strvec_to_str().
Definition at line 136 of file string_vector.c.
Referenced by report_wonders_of_the_world_long().
Returns the string at the index of the vector.
Definition at line 388 of file string_vector.c.
Referenced by option_dialog::add_option(), client_option_bitwise_secfile_str(), client_option_enum_secfile_str(), get_themes_list(), option_dialog_option_add(), option_enum_def_str(), option_enum_get_str(), option_enum_int_to_str(), option_enum_str_to_int(), option_widget_apply(), option_widget_new(), research_advance_name_translation(), research_advance_rule_name(), research_future_set_name(), save_strvec(), server_option_enum_set(), and server_option_enum_support_name().
Returns TRUE if the index is valid.
Definition at line 380 of file string_vector.c.
Referenced by strvec_get(), strvec_remove(), and strvec_set().
Insert a string at the index of the vector.
Definition at line 287 of file string_vector.c.
Create a new string vector.
Definition at line 58 of file string_vector.c.
Referenced by base_get_dirs(), fileinfolist(), get_effect_list_req_text(), get_soundplugin_list(), get_themes_list(), get_tileset_list(), helptext_government(), helptext_unit(), insert_allows_single(), lookup_strvec(), mapimg_get_format_list(), values_dlg::open_help(), option_widget_new(), report_wonders_of_the_world_long(), researches_init(), setting_bitwise_to_str(), and video_mode_list().
Insert a string at the start of the vector.
Definition at line 268 of file string_vector.c.
Referenced by strvec_insert().
Remove the string at the index from the vector. Returns TRUE if the element has been really removed.
Definition at line 319 of file string_vector.c.
Referenced by strvec_remove_duplicate(), and strvec_remove_empty().
Remove strings which are duplicated inside the vector.
Definition at line 179 of file string_vector.c.
Referenced by fileinfolist(), get_data_dirs(), get_save_dirs(), get_scenario_dirs(), and report_wonders_of_the_world_long().
Remove all empty strings from the vector and removes all leading and trailing spaces.
Definition at line 207 of file string_vector.c.
Referenced by helpeditor::close().
Set the size of the vector.
Definition at line 80 of file string_vector.c.
Referenced by get_soundplugin_list(), option_widget_new(), research_future_set_name(), strvec_append(), strvec_copy(), strvec_insert(), strvec_prepend(), strvec_remove(), and strvec_store().
Replace a string at the index of the vector. Returns TRUE if the element has been really set.
Definition at line 305 of file string_vector.c.
Referenced by helpeditor::close(), get_soundplugin_list(), option_widget_new(), research_future_set_name(), and strvec_store().
Returns the size of the vector.
Definition at line 343 of file string_vector.c.
Referenced by option_dialog::add_option(), are_strvecs_equal(), client_option_bitwise_secfile_str(), client_option_enum_secfile_str(), client_option_enum_set(), helpeditor::close(), combo_popup(), get_gui_specific_themes_directories(), get_theme_list(), get_themes_list(), helpeditor::helpeditor(), helptext_government(), helptext_unit(), insert_allows_single(), values_dlg::open_help(), option_bitwise_mask(), option_dialog_option_add(), option_enum_str_to_int(), option_widget_apply(), option_widget_new(), qtg_get_gui_specific_themes_directories(), research_future_set_name(), save_game_ruleset(), save_strvec(), and setting_bitwise_to_str().
void strvec_sort | ( | struct strvec * | psv, |
int(*)(const char *const *, const char *const *) | sort_func | ||
) |
Sort the string vector, using qsort().
Definition at line 258 of file string_vector.c.
Referenced by fileinfolist(), and report_wonders_of_the_world_long().
Stores the string vector from a normal vector. If size == -1, it will assume it is a NULL terminated vector.
Definition at line 110 of file string_vector.c.
Referenced by lookup_strvec().
Build a localized string with the elements of the string vector. Elements will be "and"-separated.
See also astr_build_and_list(), strvec_to_or_list().
Definition at line 441 of file string_vector.c.
Referenced by get_effect_list_req_text(), helptext_government(), helptext_unit(), insert_allows_single(), and setting_bitwise_to_str().
Build a localized string with the elements of the string vector. Elements will be "or"-separated.
See also astr_build_or_list(), strvec_to_and_list().
Definition at line 428 of file string_vector.c.
Referenced by helptext_government(), and insert_allows_single().
Build the string from a string vector.
This string format is a list of strings separated by 'separator'.
See also strvec_from_str().
Definition at line 400 of file string_vector.c.