Update.
[eruntime.git] / src / version.h
blob4a0faac07c7a937f0025d8f76c3e75b8b1dc0361
1 #include <inttypes.h>
3 typedef struct _version_spec_struct
5 uint16_t major;
6 uint16_t minor;
7 uint32_t patch;
8 uint32_t build;
9 const char *extra_str;
11 } version_spec_t;
13 int8_t eruntime_get_version (version_spec_t *);
14 int8_t eruntime_compare_versions (version_spec_t *, version_spec_t *);
17 * vim: ts=8 sw=8 noet fdm=marker tw=80