lower case let_to_name() output, which differs from def_oc_syms[].name */
| 874 | |
| 875 | /* lower case let_to_name() output, which differs from def_oc_syms[].name */ |
| 876 | staticfn char * |
| 877 | oclass_to_name(char oclass, char *buf) |
| 878 | { |
| 879 | char *s; |
| 880 | |
| 881 | Strcpy(buf, let_to_name(oclass, FALSE, FALSE)); |
| 882 | for (s = buf; *s; ++s) |
| 883 | *s = lowc(*s); |
| 884 | return buf; |
| 885 | } |
| 886 | |
| 887 | /* the #knownclass command - show discovered object types for one class; |
| 888 | in addition to actual object classes, supports pseudo-class 'a' for |
no test coverage detected