| 419 | |
| 420 | |
| 421 | inline value alloc_string(const char *inStr) |
| 422 | { |
| 423 | const char *end = inStr; |
| 424 | while(*end) end++; |
| 425 | return alloc_string_len(inStr,(int)(end-inStr)); |
| 426 | } |
| 427 | |
| 428 | inline value alloc_wstring(const wchar_t *inStr) |
| 429 | { |
nothing calls this directly
no test coverage detected