| 426 | } |
| 427 | |
| 428 | inline value alloc_wstring(const wchar_t *inStr) |
| 429 | { |
| 430 | const wchar_t *end = inStr; |
| 431 | while(*end) end++; |
| 432 | return alloc_wstring_len(inStr,(int)(end-inStr)); |
| 433 | } |
| 434 | |
| 435 | inline void hxcpp_unscramble(const unsigned char *bytes, int len, const char *key, unsigned char *dest) |
| 436 | { |
nothing calls this directly
no test coverage detected