Thread-local int→string for log key-value pairs */
| 83 | |
| 84 | /* Thread-local int→string for log key-value pairs */ |
| 85 | static const char *pkgmap_itoa(int val) { |
| 86 | static _Thread_local char buf[PKGMAP_ITOA_BUF]; |
| 87 | snprintf(buf, sizeof(buf), "%d", val); |
| 88 | return buf; |
| 89 | } |
| 90 | |
| 91 | /* Check if src at position p starts with literal str of known length. */ |
| 92 | static bool at_prefix(const char *p, const char *end, const char *prefix, int prefix_len) { |
no outgoing calls
no test coverage detected