| 159 | } |
| 160 | |
| 161 | txSlot* fxNextStringProperty(txMachine* the, txSlot* property, txString string, txID id, txFlag flag) |
| 162 | { |
| 163 | property = property->next = fxNewSlot(the); |
| 164 | property->flag = flag; |
| 165 | property->ID = id; |
| 166 | fxCopyStringC(the, property, string); |
| 167 | return property; |
| 168 | } |
| 169 | |
| 170 | txSlot* fxNextStringXProperty(txMachine* the, txSlot* property, txString string, txID id, txFlag flag) |
| 171 | { |
no test coverage detected