mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-07-06 07:40:49 +02:00
12 lines
180 B
C
12 lines
180 B
C
|
|
#include <wolfssl/options.h>
|
||
|
|
#include <wolfssl/ssl.h>
|
||
|
|
|
||
|
|
int main(void)
|
||
|
|
{
|
||
|
|
if (wolfSSL_Init() != WOLFSSL_SUCCESS) {
|
||
|
|
return 1;
|
||
|
|
}
|
||
|
|
wolfSSL_Cleanup();
|
||
|
|
return 0;
|
||
|
|
}
|