Created
July 11, 2022 10:10
-
-
Save lomassubedi/68b3ac6e949b4c41a67b3ee311976498 to your computer and use it in GitHub Desktop.
software_versioning
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define v_major 4 | |
#define v_minor 2 | |
#define v_patch 3 | |
uint32_t = (v_major << 16) | (v_minor << 8) | v_patch; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment