Files
mars-nwe/include/nwssl/openssl/err.h
Mario Fetka 2ade7e72e8
All checks were successful
Source release / source-package (push) Successful in 1m30s
0477 build: expose nwssl error helpers for nwwebui
2026-06-13 14:54:32 +02:00

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