| 22 | /////////////////////////////////////////// |
| 23 | |
| 24 | char *string_make(stref_t &ref) { |
| 25 | char *result = string_copy(stref_withend(ref)); |
| 26 | stref_remend(ref); |
| 27 | return result; |
| 28 | } |
| 29 | |
| 30 | /////////////////////////////////////////// |
| 31 |
nothing calls this directly
no test coverage detected