bulk changes

This commit is contained in:
2025-07-18 20:05:28 -04:00
parent 50e964d3a0
commit 1e08c7e33b
9 changed files with 196 additions and 83 deletions

View File

@@ -1,6 +1,13 @@
#ifndef STANDARD_H
#define STANDARD_H
int parse_standard_options(void (*)(), int argc, char **argv);
/**
* Parse standard command line options (--help, --version)
* @param usage_func Function pointer to usage display function
* @param argc Argument count
* @param argv Argument vector
* @return 0 on success, 1 if help/version requested, errno on error
*/
int parse_standard_options(void (*usage_func)(), int argc, char **argv);
#endif