summaryrefslogtreecommitdiff
path: root/shared/semver.h
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2022-05-26 14:45:36 +0200
committerlonkaars <loek@pipeframe.xyz>2022-05-26 14:45:36 +0200
commitfda1e9389c4bcef89a2bcdd2c01f0727e9efdb18 (patch)
tree32c558a3d0e7b2ce10fae84d1ce61460138fe73c /shared/semver.h
parent2a88cf72a211746f4da582850dc5d65ea7bfd4dc (diff)
add semver parsing, more error codes and verify avr compilation compatibility
Diffstat (limited to 'shared/semver.h')
-rw-r--r--shared/semver.h11
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);