aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/cmd_line.h
blob: 2037c73cbd073324a91386ed307652a5e7802601 (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@gmail.com>
 * 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