pub unsafe extern "C" fn ucl_object_tolstring_safe(
    obj: *const ucl_object_t,
    target: *mut *const c_char,
    tlen: *mut usize
) -> bool
Expand description

Return string as char * and len, string may be not zero terminated, more efficient that \ref ucl_obj_tostring as it allows zero-copy (if #UCL_PARSER_ZEROCOPY has been used during parsing) @param obj CL object @param target target string variable, no need to free value @param tlen target length @return true if conversion was successful