[][src]Function mesalink::libssl::err::mesalink_ERR_error_string_n

#[no_mangle]
pub unsafe extern "C" fn mesalink_ERR_error_string_n(
    error_code: c_ulong,
    buf_ptr: *mut c_char,
    buf_len: size_t
) -> *const c_char

ERR_error_string_n - generates a human-readable string representing the error code e, and places len bytes at buf. Note that this function is not thread-safe and does no checks on the size of the buffer.

#include <mesalink/openssl/err.h>

void ERR_error_string_n(unsigned long e, char *buf, size_t len);