Files
kotlin-fork/kotlin-native/backend.native/tests/interop/basics/ctoKString.def
T
2021-02-24 10:53:42 +01:00

7 lines
238 B
Modula-2

---
const char* empty() { return ""; }
const char* foo() { return "foo"; }
const char* kuku() { return "куку"; }
const char* invalid_utf8() { return "\x85\xAF"; }
const char* zero_in_the_middle() { return "before zero\0after zero"; }