mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-10-20 13:45:08 +08:00
32 lines
471 B
C
32 lines
471 B
C
/* wolfssl_version.h.in
|
|
*
|
|
* Copyright (C) 2006-2018 wolfSSL Inc. All rights reserved.
|
|
*
|
|
* This file is part of wolfSSL.
|
|
*
|
|
* Contact licensing@wolfssl.com with any questions or comments.
|
|
*
|
|
* http://www.wolfssl.com
|
|
*/
|
|
|
|
|
|
|
|
#ifndef WOLFSSL_VERSION_H
|
|
#define WOLFSSL_VERSION_H
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define LIBWOLFSSL_VERSION_STRING "3.15.3"
|
|
#define LIBWOLFSSL_VERSION_HEX 0x03015003
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif /* WOLFSSL_VERSION_H */
|
|
|