Ion C
C library for Ion
ion_version.h
1 #ifndef __IONC_VERSION_H__
2 #define __IONC_VERSION_H__
3 
4 #include "ion_errors.h"
5 
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9 
18 ION_API_EXPORT char const *ion_version(void);
19 
28 ION_API_EXPORT char const *ion_version_full(void);
29 
39 ION_API_EXPORT iERR ion_version_components(unsigned int *major, unsigned int *minor, unsigned int *patch);
40 
46 char const *ion_version_revision(void);
47 
48 #ifdef __cplusplus
49 }
50 #endif
51 
52 #endif /* __IONC_VERSION_H__ */