Simple strstr wrapper used by log tests (avoids circular dep on str_util) */
| 18 | |
| 19 | /* Simple strstr wrapper used by log tests (avoids circular dep on str_util) */ |
| 20 | static inline bool cbm_str_contains_raw(const char *s, const char *sub) { |
| 21 | return strstr(s, sub) != NULL; |
| 22 | } |
| 23 | |
| 24 | static char log_buf[4096]; |
| 25 | static char sink_buf[4096]; |