summaryrefslogtreecommitdiff
path: root/openssl-sys/src/conf.rs
blob: 9b9d4b26ff38008fef87fc9b6df11c2567a166f2 (plain)
1
2
3
4
5
6
7
use *;

extern "C" {
    pub fn NCONF_new(meth: *mut CONF_METHOD) -> *mut CONF;
    pub fn NCONF_default() -> *mut CONF_METHOD;
    pub fn NCONF_free(conf: *mut CONF);
}