Template-gint-library/include/example/version.h

24 lines
386 B
C

/* libexample: version information */
#ifndef _EXAMPLE_VERSION
#define _EXAMPLE_VERSION
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
/* Version of the example library */
char const *ex_version(void);
/* Version of gint used in this library */
char const *ex_gint_version(void);
uint32_t ex_gint_hash(void);
#ifdef __cplusplus
}
#endif
#endif /* _EXAMPLE_VERSION */