2019-10-24 13:51:22 +02:00
|
|
|
module builtin
|
|
|
|
|
|
|
|
fn C.memcpy(byteptr, byteptr, int)
|
|
|
|
fn C.memmove(byteptr, byteptr, int)
|
|
|
|
//fn C.malloc(int) byteptr
|
2019-10-24 14:41:29 +02:00
|
|
|
fn C.realloc(a byteptr, b int) byteptr
|
|
|
|
|
|
|
|
fn C.qsort(voidptr, int, int, voidptr)
|
|
|
|
|
|
|
|
fn C.sprintf(a ...voidptr) byteptr
|
|
|
|
|
|
|
|
|
|
|
|
// Windows
|
|
|
|
fn C._setmode(int, int)
|
|
|
|
fn C._fileno(int) int
|
2019-10-24 13:51:22 +02:00
|
|
|
|
|
|
|
|