| 493 | static inline int JS_PRINTF_FORMAT_ATTR(2, 3) dbuf_printf(DynBuf *s, JS_PRINTF_FORMAT const char *fmt, ...); |
| 494 | static inline void dbuf_free(DynBuf *s); |
| 495 | static inline bool dbuf_error(DynBuf *s) { |
| 496 | return s->error; |
| 497 | } |
| 498 | static inline void dbuf_set_error(DynBuf *s) |
| 499 | { |
| 500 | s->error = true; |
no outgoing calls
no test coverage detected