struct Config { bool forward; bool human_readable; bool help; bool multiline; int precision; }; typedef struct Config Config; struct Result { bool success; void* result; }; typedef struct Result Result; Result/*Config*/ parse_config(int argc, char* argv[]);