| 316 | } |
| 317 | |
| 318 | static void add_instead_of(struct rewrite *rewrite, const char *instead_of) |
| 319 | { |
| 320 | ALLOC_GROW(rewrite->instead_of, rewrite->instead_of_nr + 1, rewrite->instead_of_alloc); |
| 321 | rewrite->instead_of[rewrite->instead_of_nr].s = instead_of; |
| 322 | rewrite->instead_of[rewrite->instead_of_nr].len = strlen(instead_of); |
| 323 | rewrite->instead_of_nr++; |
| 324 | } |
| 325 | |
| 326 | #ifndef WITH_BREAKING_CHANGES |
| 327 | static const char *skip_spaces(const char *s) |