blob: fa60eccf946499892030a80473474e742a973f71 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// This file defines how to compile CLI argument parsing
#pragma once
#include "../environment.h"
#include "../stdlib/datatypes.h"
#include "../types.h"
Text_t compile_cli_arg_call(env_t *env, Text_t fn_name, type_t *fn_type, const char *version);
Text_t compile_manpage(Text_t program, OptionalText_t synopsis, OptionalText_t description, arg_t *args);
|