mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 02:02:06 +00:00
22 lines
385 B
C++
22 lines
385 B
C++
// SPDX-License-Identifier: MIT
|
|
|
|
#ifndef RGBDS_CLI_HPP
|
|
#define RGBDS_CLI_HPP
|
|
|
|
#include <stdarg.h>
|
|
#include <string>
|
|
|
|
#include "extern/getopt.hpp" // option
|
|
#include "usage.hpp"
|
|
|
|
void cli_ParseArgs(
|
|
int argc,
|
|
char *argv[],
|
|
char const *shortOpts,
|
|
option const *longOpts,
|
|
void (*parseArg)(int, char *),
|
|
Usage usage
|
|
);
|
|
|
|
#endif // RGBDS_CLI_HPP
|