use core::mlvalues::{Size, Value, Tag};
extern "C" {
pub fn caml_alloc(size: Size, tag: Tag) -> Value;
pub fn caml_alloc_small(size: Size, tag: Tag) -> Value;
pub fn caml_alloc_tuple(size: Size) -> Value;
pub fn caml_alloc_string(size: Size) -> Value; pub fn caml_copy_string(string: *const u8) -> Value;
pub fn caml_copy_string_array(arr: *const *const u8) -> Value;
pub fn caml_copy_double(double: f64) -> Value;
pub fn caml_copy_int32(int: i32) -> Value; pub fn caml_copy_int64(int: i64) -> Value; pub fn caml_copy_nativeint(int: isize) -> Value; pub fn caml_alloc_array(value: (unsafe extern "C" fn(*const u8) -> Value), array: *mut *mut u8) -> Value;
}