18 lines
289 B
C
18 lines
289 B
C
#ifndef MARS_NWSSL_OPENSSL_ERR_H
|
|
#define MARS_NWSSL_OPENSSL_ERR_H
|
|
#include <openssl/ssl.h>
|
|
#include <stddef.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
unsigned long ERR_get_error(void);
|
|
void ERR_error_string_n(unsigned long e, char *buf, size_t len);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|