1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
Files
v/vlib/compiler/tests/cstrings_test.v
2019-12-05 17:08:18 +03:00

9 lines
129 B
V

fn test_cstring(){
w := c'world'
hlen := C.strlen(c'hello')
wlen := C.strlen(w)
assert hlen == 5
assert wlen == 5
}