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