| 229 | bool identexists(const char *name) { return idents->access(name)!=NULL; } |
| 230 | |
| 231 | const char *getalias(const char *name) |
| 232 | { |
| 233 | ident *i = idents->access(name); |
| 234 | return i && i->type==ID_ALIAS ? i->action : NULL; |
| 235 | } |
| 236 | void _getalias(char *name) |
| 237 | { |
| 238 | string o = ""; |
no test coverage detected