| 211 | namespace { |
| 212 | |
| 213 | void |
| 214 | append_delim_value(string_buffer& buf, const char *start, const char *finish) |
| 215 | { |
| 216 | if (start == 0) { |
| 217 | /* null */ |
| 218 | const char t[] = "\t\0"; |
| 219 | buf.append(t, t + 2); |
| 220 | } else { |
| 221 | /* non-null */ |
| 222 | buf.append_literal("\t"); |
| 223 | escape_string(buf, start, finish); |
| 224 | } |
| 225 | } |
| 226 | |
| 227 | }; |
| 228 |
no test coverage detected