:orphan: .. index:: pair: group; Tail queue of strings .. _doxid-group__te__tools__tq__string: Tail queue of strings ===================== .. toctree:: :hidden: struct_tqe_string.rst Overview ~~~~~~~~ Definition of API for working with tail queue of strings. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block // typedefs typedef struct :ref:`tqe_string` :ref:`tqe_string`; // structs struct :ref:`tqe_string`; // global functions typedef :ref:`TAILQ_HEAD`(tqh_strings, :ref:`tqe_string`); void :ref:`tq_strings_free`(tqh_strings* head, void(*)(void*) value_free); bool :ref:`tq_strings_equal`(const tqh_strings* s1, const tqh_strings* s2); :ref:`te_errno` :ref:`tq_strings_add_uniq_gen`(tqh_strings* list, const char* value, bool duplicate); :ref:`te_errno` :ref:`tq_strings_add_uniq`(tqh_strings* list, const char* value); :ref:`te_errno` :ref:`tq_strings_add_uniq_dup`(tqh_strings* list, const char* value); :ref:`te_errno` :ref:`tq_strings_move`(tqh_strings* dst, tqh_strings* src); :ref:`te_errno` :ref:`tq_strings_copy`(tqh_strings* dst, const tqh_strings* src); :ref:`te_errno` :ref:`tq_strings_shallow_copy`(tqh_strings* dst, const tqh_strings* src); .. _details-group__te__tools__tq__string: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Definition of API for working with tail queue of strings. Copyright (C) 2004-2022 OKTET Labs Ltd. All rights reserved. Typedefs -------- .. index:: pair: typedef; tqe_string .. _doxid-group__te__tools__tq__string_1gaa12ef7738e4a16913f761f52b77ac82e: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`tqe_string` tqe_string Element of the list of strings Global Functions ---------------- .. index:: pair: function; TAILQ_HEAD .. _doxid-group__te__tools__tq__string_1ga327511b758ca9603028311fe1cb282a0: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef TAILQ_HEAD(tqh_strings, :ref:`tqe_string`) Head of the list of strings .. index:: pair: function; tq_strings_free .. _doxid-group__te__tools__tq__string_1ga49c500f0339781750912c4fe3c664126: .. ref-code-block:: cpp :class: doxyrest-title-code-block void tq_strings_free(tqh_strings* head, void(*)(void*) value_free) Free list of allocated strings. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - head - Head of the list * - value_free - Function to be called to free value or NULL .. index:: pair: function; tq_strings_equal .. _doxid-group__te__tools__tq__string_1ga2870cac1c8e92e60cd722916fce9a1b7: .. ref-code-block:: cpp :class: doxyrest-title-code-block bool tq_strings_equal(const tqh_strings* s1, const tqh_strings* s2) Compare two tail queue of strings. Queues are equal, if each element of the first queue is equal to the corresponding element of the second queue. c true Equal c false Not equal .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - s1 - The first tail queue * - s2 - .. index:: pair: function; tq_strings_add_uniq_gen .. _doxid-group__te__tools__tq__string_1gacf8c3f2647b9b54a4166a21f10ef6072: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tq_strings_add_uniq_gen(tqh_strings* list, const char* value, bool duplicate) Add a new string into the list, if no such string is already present there. Bug The return type of the function is actually boolean. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - list - Head of the list * - value - A new string to add * - duplicate - Whether to duplicate string or not .. rubric:: Returns: 0 if string was added 1 if string was already presented .. index:: pair: function; tq_strings_add_uniq .. _doxid-group__te__tools__tq__string_1ga46735f5f40b8f124840a82a2e20d1a19: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tq_strings_add_uniq(tqh_strings* list, const char* value) Add a new string into the list, if no such string is already present there. String value is not duplicated. Bug The return type of the function is actually boolean. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - list - Head of the list * - value - A new string to add .. rubric:: Returns: 0 if string was added 1 if string was already presented .. index:: pair: function; tq_strings_add_uniq_dup .. _doxid-group__te__tools__tq__string_1gad7d3a8efdc2ebccc4671678d7cb11cdb: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tq_strings_add_uniq_dup(tqh_strings* list, const char* value) Add a new string into the list, if no such string is already present there. String value is duplicated. Bug The return type of the function is actually boolean. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - list - Head of the list * - value - A new string to add .. rubric:: Returns: 0 if string was added 1 if string was already presented .. index:: pair: function; tq_strings_move .. _doxid-group__te__tools__tq__string_1gaacfdc71aa7d7855d4eb1ad56ca0fd940: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tq_strings_move(tqh_strings* dst, tqh_strings* src) Move values from source queue to destination queue. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - dst - Destination queue * - src - Source queue .. rubric:: Returns: Status code. .. index:: pair: function; tq_strings_copy .. _doxid-group__te__tools__tq__string_1ga02137990f08dbc1ed8b5c9ced34df0c7: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tq_strings_copy(tqh_strings* dst, const tqh_strings* src) Copy values from source queue to destination queue. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - dst - Destination queue * - src - Source queue .. rubric:: Returns: Status code. .. index:: pair: function; tq_strings_shallow_copy .. _doxid-group__te__tools__tq__string_1ga3e210652af710949d1e0e0ec50e48915: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` tq_strings_shallow_copy(tqh_strings* dst, const tqh_strings* src) Copy members from source queue to destination queue but let copied members to point to the same strings. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - dst - Destination queue * - src - Source queue .. rubric:: Returns: Status code.