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

json: decode() part 1

This commit is contained in:
Alexander Medvednikov
2020-05-01 12:02:31 +02:00
parent a0e662bef9
commit c1ee14cc3e
3 changed files with 22 additions and 46 deletions

View File

@ -12,7 +12,7 @@ struct C.cJSON {
valuestring byteptr
}
pub fn decode() ?voidptr {
pub fn decode(typ voidptr, s string) ?voidptr {
// compiler implementation
return 0
}