| 135 | } |
| 136 | |
| 137 | pn_bytes_t pn_string_bytes(pn_string_t *string) |
| 138 | { |
| 139 | if (!string || string->size == PNI_NULL_SIZE) { |
| 140 | return (pn_bytes_t){0, NULL}; |
| 141 | } else { |
| 142 | return (pn_bytes_t){string->size, string->bytes}; |
| 143 | } |
| 144 | } |
| 145 | |
| 146 | int pn_string_set(pn_string_t *string, const char *bytes) |
| 147 | { |
no outgoing calls
no test coverage detected