[][src]Function mesalink::libssl::x509::mesalink_X509_NAME_oneline

#[no_mangle]
pub extern "C" fn mesalink_X509_NAME_oneline(
    x509_name_ptr: *mut MESALINK_X509_NAME,
    buf_ptr: *mut c_char,
    size: c_int
) -> *mut c_char

X509_NAME_oneline - prints an ASCII version of a to buf. If buf is NULL then a buffer is dynamically allocated and returned, and size is ignored. Otherwise, at most size bytes will be written, including the ending '\0', and buf is returned.

#include <mesalink/openssl/x509.h>

char * X509_NAME_oneline(X509_NAME *a,char *buf,int size);