| 73 | } |
| 74 | |
| 75 | void trinity_module_string_set(trinity_module_string_t *ret, const char*s) { |
| 76 | ret->ptr = (char*) s; |
| 77 | ret->len = strlen(s); |
| 78 | } |
| 79 | |
| 80 | void trinity_module_string_dup(trinity_module_string_t *ret, const char*s) { |
| 81 | ret->len = strlen(s); |
no outgoing calls
no test coverage detected