[][src]Function tabbyssl::libssl::x509::tabby_X509_NAME_oneline

#[no_mangle]pub extern "C" fn tabby_X509_NAME_oneline(
    x509_name_ptr: *mut TABBY_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 <tabbyssl/openssl/x509.h>

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