How come `"hello".cstr.size == "hello".length + 2`...
# kotlin-native
t
How come
"hello".cstr.size == "hello".length + 2
? Shouldn't it just have one more byte for the NUL?
Ah, fixed in version 0.3.2 it seems, probably by commit 7fadfa5a0. So now I can just subtract 1 to get the number of actual bytes, right?
o
Yes, it was fixed