1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

doc: mention charptr in the primitives section too

This commit is contained in:
Delyan Angelov 2020-06-11 07:58:45 +03:00
parent dc72d2591e
commit 6c087de837

View File

@ -286,8 +286,8 @@ f32 f64
any_int, any_float // internal intermediate types of number literals
byteptr // these two are mostly used for C interop
voidptr
byteptr, voidptr, charptr, size_t : // these are mostly used for
<a href='#calling-c-functions-from-v'>C interoperability</a>
any // similar to C's void* and Go's interface{}
```