| 53 | // Helper Functions |
| 54 | |
| 55 | void trinity_module_message_free(trinity_module_message_t *ptr) { |
| 56 | trinity_module_string_free(&ptr->content); |
| 57 | trinity_module_string_free(&ptr->to); |
| 58 | } |
| 59 | |
| 60 | void trinity_module_option_string_free(trinity_module_option_string_t *ptr) { |
| 61 | if (ptr->is_some) { |
no test coverage detected