| 261 | }; |
| 262 | |
| 263 | bool bstr_equal_c(const bstr *b, const char *c) { |
| 264 | if ((c == NULL) || (b == NULL)) { |
| 265 | return (c == NULL) && (b == NULL); |
| 266 | } else { |
| 267 | return (0 == bstr_cmp_c(b, c)); |
| 268 | } |
| 269 | } |
| 270 | |
| 271 | void append_message(std::ostream & o, |
| 272 | const char *label, const char *expected, bstr *actual) { |
no test coverage detected