* @brief Detaches and frees memory from a string vector structure * * @param[in,out] sv Pointer to the string vector structure to detach */
| 32 | * @param[in,out] sv Pointer to the string vector structure to detach |
| 33 | */ |
| 34 | static void _strvec_detach(struct lwp_string_vector *sv) |
| 35 | { |
| 36 | if (sv->strvec) |
| 37 | { |
| 38 | rt_free(sv->strvec); |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * @brief Appends a string to a string vector structure |
no test coverage detected