| 241 | } |
| 242 | |
| 243 | char* fxGetKeyName(txMachine* the, txID theID) |
| 244 | { |
| 245 | txSlot* key = fxGetKey(the, theID); |
| 246 | if (key->flag & XS_DONT_ENUM_FLAG) |
| 247 | return key->value.string; |
| 248 | return C_NULL; |
| 249 | } |
| 250 | |
| 251 | char* fxGetKeyString(txMachine* the, txID theID, txBoolean* adorn) |
| 252 | { |
no test coverage detected