mirror of
https://github.com/MaJerle/lwshell.git
synced 2025-01-25 13:02:54 +08:00
Reset version
This commit is contained in:
parent
216ca11092
commit
0ee6df331d
@ -13,7 +13,14 @@ addint_cmd(int32_t argc, char** argv) {
|
||||
}
|
||||
|
||||
int
|
||||
main(void) {
|
||||
main(int argc, char** argv) {
|
||||
printf("Program started...\r\n");
|
||||
printf("ARGC: %d\r\n", argc);
|
||||
for (size_t i = 0; i < argc; ++i) {
|
||||
printf("ARGV %d: %s\r\n", i, argv[i]);
|
||||
}
|
||||
printf("\r\n");
|
||||
|
||||
lwshell_init();
|
||||
lwshell_register_cmd("addint", addint_cmd, "Adds int between 2 arguments");
|
||||
|
||||
|
@ -27,7 +27,7 @@ copyright = '2020, Tilen MAJERLE'
|
||||
author = 'Tilen MAJERLE'
|
||||
|
||||
# The full version, including alpha/beta/rc tags
|
||||
version = 'v1.4.0'
|
||||
version = '$_version_$'
|
||||
|
||||
# Try to get branch at which this is running
|
||||
# and try to determine which version to display in sphinx
|
||||
|
Loading…
x
Reference in New Issue
Block a user