1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/builtin/cfns.v
Alexander Medvednikov 203f967677 macos libproc fix 1
2019-10-26 02:16:37 +03:00

31 lines
502 B
V

module builtin
fn C.memcpy(byteptr, byteptr, int)
fn C.memmove(byteptr, byteptr, int)
//fn C.malloc(int) byteptr
fn C.realloc(a byteptr, b int) byteptr
fn C.qsort(voidptr, int, int, voidptr)
fn C.sprintf(a ...voidptr) byteptr
fn C.strlen(s byteptr) int
fn C.isdigit(s byteptr) bool
// <execinfo.h>
fn backtrace(a voidptr, b int) int
fn backtrace_symbols_fd(voidptr, int, int)
// <libproc.h>
//fn proc_pidpath(int, voidptr, int) int
// Windows
fn C._setmode(int, int)
fn C._fileno(int) int