| 237 | }; |
| 238 | |
| 239 | static struct variable *variable_lookup(const char *name) |
| 240 | { |
| 241 | struct variable *v; |
| 242 | |
| 243 | list_for_each_entry(v, &variable_list, node) { |
| 244 | if (!strcmp(name, v->name)) |
| 245 | return v; |
| 246 | } |
| 247 | |
| 248 | return NULL; |
| 249 | } |
| 250 | |
| 251 | static char *variable_expand(const char *name, int argc, char *argv[]) |
| 252 | { |
no outgoing calls
no test coverage detected