PolarSSL v1.3.3
version.h
Go to the documentation of this file.
1 
27 /*
28  * This set of compile-time defines and run-time variables can be used to
29  * determine the version number of the PolarSSL library used.
30  */
31 #ifndef POLARSSL_VERSION_H
32 #define POLARSSL_VERSION_H
33 
34 #include "config.h"
35 
40 #define POLARSSL_VERSION_MAJOR 1
41 #define POLARSSL_VERSION_MINOR 3
42 #define POLARSSL_VERSION_PATCH 3
43 
49 #define POLARSSL_VERSION_NUMBER 0x01030300
50 #define POLARSSL_VERSION_STRING "1.3.3"
51 #define POLARSSL_VERSION_STRING_FULL "PolarSSL 1.3.3"
52 
53 #if defined(POLARSSL_VERSION_C)
54 
55 #ifdef __cplusplus
56 extern "C" {
57 #endif
58 
65 unsigned int version_get_number( void );
66 
73 void version_get_string( char *string );
74 
81 void version_get_string_full( char *string );
82 
83 #ifdef __cplusplus
84 }
85 #endif
86 
87 #endif /* POLARSSL_VERSION_C */
88 
89 #endif /* version.h */
Configuration options (set of defines)
unsigned int version_get_number(void)
Get the version number.
void version_get_string(char *string)
Get the version string ("x.y.z").
void version_get_string_full(char *string)
Get the full version string ("PolarSSL x.y.z").