returns whether it looks like an argument, i.e. prefixed by ARG_PREFIX. */
| 220 | returns whether it looks like an argument, i.e. prefixed by ARG_PREFIX. |
| 221 | */ |
| 222 | static int looks_like_an_argument(const char *word) |
| 223 | { |
| 224 | return ap_strchr(ARG_PREFIX, *word) != 0; |
| 225 | } |
| 226 | |
| 227 | /* |
| 228 | generates an error on macro with two arguments of the same name. |
no test coverage detected