SWOC System
Server Wait On Clients System.
internal.h
Go to the documentation of this file.
1 
14 /* **********************************************************************
15  * *
16  * Changelog *
17  * *
18  * Date Author Version Description *
19  * *
20  * 08/07/2015 MG 1.0.1 First release. *
21  * 09/05/2016 MG 1.0.2 Move header files to include directory. *
22  * 11/06/2016 MG 1.0.3 Modified following introduction of *
23  * libswocclient library. *
24  * 13/06/2016 MG 1.0.4 Adopt convention of using void in empty *
25  * function parameter lists. *
26  * 17/07/2016 MG 1.0.5 Move towards kernel coding style. *
27  * 12/11/2017 MG 1.0.6 Add Doxygen comments. *
28  * Add SPDX license tag. *
29  * 22/05/2018 MG 1.0.7 Change name to internal.h and place in *
30  * src directory. *
31  * 18/05/2019 MG 1.0.8 Merge sub-projects into one. *
32  * *
33  ************************************************************************
34  */
35 
36 #ifndef SWOCCLIENT_INTERNAL_H
37 #define SWOCCLIENT_INTERNAL_H
38 
39 #include <portability.h>
40 
41 BEGIN_C_DECLS
42 
43 char *swocclient_get_pkg_version(void);
44 
45 char *swocclient_get_src_version(void);
46 
48 
50 
51 END_C_DECLS
52 
53 #endif /* ndef SWOCCLIENT_INTERNAL_H */
54 
BEGIN_C_DECLS char * swocclient_get_pkg_version(void)
Get the git-describe based package version.
Definition: version.c:44
char * swocclient_get_src_version(void)
Get the source version.
Definition: version.c:53
void swocclient_print_src_version(void)
Print the source version string to stdout.
Definition: version.c:70
void swocclient_print_pkg_version(void)
Print the package version string to stdout.
Definition: version.c:61