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

builtin: add a declaration for C.putchar (#16037)

This commit is contained in:
Rasheed 2022-10-11 10:53:12 -07:00 committed by GitHub
parent 4c0ea67137
commit 12d3664a09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -184,6 +184,9 @@ fn C.strchr(s &char, c int) &char
[trusted]
fn C.getchar() int
[trusted]
fn C.putchar(int) int
fn C.strdup(s &char) &char
fn C.strncasecmp(s &char, s2 &char, n int) int