diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-05-26 14:45:36 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-05-26 14:45:36 +0200 |
commit | fda1e9389c4bcef89a2bcdd2c01f0727e9efdb18 (patch) | |
tree | 32c558a3d0e7b2ce10fae84d1ce61460138fe73c /shared/semver.h | |
parent | 2a88cf72a211746f4da582850dc5d65ea7bfd4dc (diff) |
add semver parsing, more error codes and verify avr compilation compatibility
Diffstat (limited to 'shared/semver.h')
-rw-r--r-- | shared/semver.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/shared/semver.h b/shared/semver.h new file mode 100644 index 0000000..a99ae61 --- /dev/null +++ b/shared/semver.h @@ -0,0 +1,11 @@ +#pragma once + +#include <stdint.h> + +typedef struct { + uint8_t major; + uint8_t minor; + uint8_t patch; +} w2_semver_t; + +w2_semver_t w2_semver_parse(const char *str, uint8_t length); |