blob: e1a7e963fdc29c0fd48fc7c5b0760a1ebf2de636 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* Copyright (c) 2023 Egor Tensin <egor@tensin.name>
* This file is part of the "cimple" project.
* For details, see https://github.com/egor-tensin/cimple.
* Distributed under the MIT License.
*/
#ifndef __CMD_LINE_H__
#define __CMD_LINE_H__
const char *get_usage_string(void);
void exit_with_usage(int ec);
void exit_with_usage_err(const char *msg);
void exit_with_version(void);
#endif
|