| 985 | } |
| 986 | |
| 987 | static int jl_buffer_string(jl_buffer_t *buffer, const char *text) { |
| 988 | return jl_buffer_append(buffer, text, strlen(text)); |
| 989 | } |
| 990 | |
| 991 | static int jl_append_quoted_string(jl_buffer_t *buffer, const char *value) { |
| 992 | static const char hex[] = "0123456789abcdef"; |
no test coverage detected