Server Wait On Clients System - Full Internal Documentation  v1.6.3
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  * 27/03/2020 MG 1.0.9 Move into swocclient sub-directory as *
33  * the directory hierarchy needs to be the *
34  * same accross the source tree for *
35  * temporary libraries to work based on *
36  * the search in configure.ac. *
37  * 08/12/2021 MG 1.0.10 Tighten SPDX tag. *
38  * *
39  ************************************************************************
40  */
41 
42 #ifndef SWOCCLIENT_INTERNAL_H
43 #define SWOCCLIENT_INTERNAL_H
44 
45 #include <portability.h>
46 
47 BEGIN_C_DECLS
48 
49 char *swocclient_get_pkg_version(void);
50 
51 char *swocclient_get_src_version(void);
52 
54 
56 
57 END_C_DECLS
58 
59 #endif /* ndef SWOCCLIENT_INTERNAL_H */
60 
void swocclient_print_src_version(void)
Print the source version string to stdout.
Definition: version.c:76
char * swocclient_get_src_version(void)
Get the source version.
Definition: version.c:59
BEGIN_C_DECLS char * swocclient_get_pkg_version(void)
Get the git-describe based package version.
Definition: version.c:50
void swocclient_print_pkg_version(void)
Print the package version string to stdout.
Definition: version.c:67