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

builtin: more libc fn definitions

This commit is contained in:
Alexander Medvednikov 2022-01-24 06:14:31 +03:00
parent edf0bc365c
commit 216a505c2a

View File

@ -177,6 +177,15 @@ fn C.strchr(s &char, c int) &char
[trusted]
fn C.getchar() int
[trusted]
fn C.strdup(s &char) &char
[trusted]
fn C.strncasecmp(s &char, s2 &char, n int) int
[trusted]
fn C.strcasecmp(s &char, s2 &char) int
[trusted]
fn C.strerror(int) &char