| 252 | |
| 253 | |
| 254 | value charString(value inC0, value inC1, value inC2) |
| 255 | { |
| 256 | buffer buf = alloc_buffer("A "); |
| 257 | buffer_append_char(buf,val_int(inC0)); |
| 258 | buffer_append_char(buf,val_int(inC1)); |
| 259 | buffer_append_char(buf,val_int(inC2)); |
| 260 | return buffer_to_string(buf); |
| 261 | } |
| 262 | DEFINE_PRIM(charString, 3); |
| 263 | |
| 264 |
nothing calls this directly
no test coverage detected