stdlib

@extern
object stdlib
class Object
trait Matchable
class Any
stdlib.type

Value members

Concrete methods

@name("scalanative_exit_failure")
def EXIT_FAILURE: CInt
@name("scalanative_exit_success")
def EXIT_SUCCESS: CInt
@name("scalanative_rand_max")
def RAND_MAX: CInt
def _Exit(exitCode: CInt): Unit
def abort(): Unit
def aligned_alloc(alignment: CSize, size: CSize): Unit
def at_quick_exit(func: CFuncPtr0[Unit]): CInt
def atexit(func: CFuncPtr0[Unit]): CInt
def atof(str: CString): CDouble
def atoi(str: CString): CInt
def atol(str: CString): CLong
def atoll(str: CString): CLongLong
def bsearch(key: Ptr[Byte], data: Ptr[Byte], num: CSize, size: CSize, comparator: CFuncPtr2[Ptr[Byte], Ptr[Byte], CInt]): Unit
def calloc(num: CSize, size: CSize): Ptr[Byte]
def exit(exitCode: CInt): Unit
def free(ptr: Ptr[Byte]): Unit
def getenv(name: CString): CString
def malloc(size: CSize): Ptr[Byte]
def qsort(data: Ptr[Byte], num: CSize, size: CSize, comparator: CFuncPtr2[Ptr[Byte], Ptr[Byte], CInt]): Unit
def quick_exit(exitCode: CInt): Unit
def rand(): CInt
def realloc(ptr: Ptr[Byte], newSize: CSize): Ptr[Byte]
def realpath(file_name: CString, resolved_name: CString): CString
def srand(seed: CUnsignedInt): Unit
def strtod(str: CString, str_end: Ptr[CString]): CDouble
def strtof(str: CString, str_end: Ptr[CString]): CFloat
def strtol(str: CString, str_end: Ptr[CString], base: CInt): CLong
def strtoll(str: CString, str_end: Ptr[CString], base: CInt): CLongLong
def strtoul(str: CString, str_end: Ptr[CString], base: CInt): CUnsignedLong
def strtoull(str: CString, str_end: Ptr[CString], base: CInt): CUnsignedLongLong
def system(command: CString): CInt