Class std.priv.Runtime
Synopsis
public static class Runtime
An interface between the Perun and C parts of libperun.
Fields
Constructors
Methods
public static ptr_t malloc(dword_t size);
No description given
public static void free(ptr_t ptr);
No description given
public static void memset(ptr_t dest,byte_t byte,dword_t count);
No description given
public static void memcpy(ptr_t dest,ptr_t src,dword_t count);
No description given
public static int strlen(ptr_t ptr);
No description given
public static int strcmp(ptr_t a,ptr_t b);
No description given
public static ptr_t strstr(ptr_t haystack,ptr_t needle);
No description given
public static ptr_t getByteArrayPointer(byte_t[] bytes);
Return the pointer corresponding to the specified array.