1 #ifndef NU_VERSION_H
2 #define NU_VERSION_H
3 
4 #include "defines.h"
5 
6 /** @defgroup other Other
7  */
8 
9 #if defined (__cplusplus) || defined (c_plusplus)
10 extern "C" {
11 #endif
12 
13 /** This define holds human-readable version of nunicode
14  *
15  * @ingroup defines
16  */
17 #define NU_VERSION "custom"
18 
19 /** Human-readable version of nunicode
20  *
21  * @ingroup other
22  * @return version string
23  */
24 NU_EXPORT
25 const char* nu_version(void);
26 
27 #if defined (__cplusplus) || defined (c_plusplus)
28 }
29 #endif
30 
31 #endif /* NU_VERSION_H */
32