| 191 | } |
| 192 | |
| 193 | static inline void strintmap_set(struct strintmap *map, const char *str, |
| 194 | intptr_t v) |
| 195 | { |
| 196 | strmap_put(&map->map, str, (void *)v); |
| 197 | } |
| 198 | |
| 199 | /* |
| 200 | * Increment the value for str by amt. If str isn't in the map, add it and |
no test coverage detected