| 293 | } |
| 294 | |
| 295 | StringContainer valueToQuotedString(const char* value) { |
| 296 | return valueToQuotedStringN(value, strlen(value)); |
| 297 | } |
| 298 | |
| 299 | StringContainer valueToQuotedString(const char* value, size_t length) { |
| 300 | return valueToQuotedStringN(value, length); |
nothing calls this directly
no test coverage detected