mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
Compare commits
2 Commits
f065243cd2
...
8bedd710d7
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8bedd710d7 | ||
|
|
efb5a88edb |
@@ -7,6 +7,7 @@
|
|||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#include "extern/getopt.hpp" // option
|
#include "extern/getopt.hpp" // option
|
||||||
|
#include "usage.hpp"
|
||||||
|
|
||||||
void cli_ParseArgs(
|
void cli_ParseArgs(
|
||||||
int argc,
|
int argc,
|
||||||
@@ -14,7 +15,7 @@ void cli_ParseArgs(
|
|||||||
char const *shortOpts,
|
char const *shortOpts,
|
||||||
option const *longOpts,
|
option const *longOpts,
|
||||||
void (*parseArg)(int, char *),
|
void (*parseArg)(int, char *),
|
||||||
void (*fatal)(char const *, ...)
|
Usage usage
|
||||||
);
|
);
|
||||||
|
|
||||||
#endif // RGBDS_CLI_HPP
|
#endif // RGBDS_CLI_HPP
|
||||||
|
|||||||
6
include/extern/getopt.hpp
vendored
6
include/extern/getopt.hpp
vendored
@@ -12,7 +12,7 @@ static constexpr int optional_argument = 2;
|
|||||||
// clang-format on
|
// clang-format on
|
||||||
|
|
||||||
extern char *musl_optarg;
|
extern char *musl_optarg;
|
||||||
extern int musl_optind, musl_opterr, musl_optopt, musl_optreset;
|
extern int musl_optind, musl_optopt;
|
||||||
|
|
||||||
struct option {
|
struct option {
|
||||||
char const *name;
|
char const *name;
|
||||||
@@ -21,8 +21,6 @@ struct option {
|
|||||||
int val;
|
int val;
|
||||||
};
|
};
|
||||||
|
|
||||||
int musl_getopt_long_only(
|
int musl_getopt_long_only(int argc, char **argv, char const *optstring, option const *longopts);
|
||||||
int argc, char **argv, char const *optstring, option const *longopts, int *idx
|
|
||||||
);
|
|
||||||
|
|
||||||
#endif // RGBDS_EXTERN_GETOPT_HPP
|
#endif // RGBDS_EXTERN_GETOPT_HPP
|
||||||
|
|||||||
@@ -513,7 +513,7 @@ int main(int argc, char *argv[]) {
|
|||||||
options.maxErrors = 100; // LCOV_EXCL_LINE
|
options.maxErrors = 100; // LCOV_EXCL_LINE
|
||||||
}
|
}
|
||||||
|
|
||||||
cli_ParseArgs(argc, argv, optstring, longopts, parseArg, fatal);
|
cli_ParseArgs(argc, argv, optstring, longopts, parseArg, usage);
|
||||||
|
|
||||||
if (!options.targetFileName && options.objectFileName) {
|
if (!options.targetFileName && options.objectFileName) {
|
||||||
options.targetFileName = options.objectFileName;
|
options.targetFileName = options.objectFileName;
|
||||||
|
|||||||
23
src/cli.cpp
23
src/cli.cpp
@@ -2,26 +2,30 @@
|
|||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "extern/getopt.hpp"
|
#include "extern/getopt.hpp"
|
||||||
|
#include "style.hpp"
|
||||||
|
#include "usage.hpp"
|
||||||
#include "util.hpp" // isBlankSpace
|
#include "util.hpp" // isBlankSpace
|
||||||
|
|
||||||
using namespace std::literals;
|
using namespace std::literals;
|
||||||
|
|
||||||
// Turn an at-file's contents into an argv that `getopt` can handle, appending them to `argPool`.
|
// Turn an at-file's contents into an argv that `getopt` can handle, appending them to `argPool`.
|
||||||
static std::vector<size_t> readAtFile(
|
static std::vector<size_t>
|
||||||
std::string const &path, std::vector<char> &argPool, void (*fatal)(char const *, ...)
|
readAtFile(std::string const &path, std::vector<char> &argPool, Usage usage) {
|
||||||
) {
|
|
||||||
std::vector<size_t> argvOfs;
|
std::vector<size_t> argvOfs;
|
||||||
|
|
||||||
std::filebuf file;
|
std::filebuf file;
|
||||||
if (!file.open(path, std::ios_base::in)) {
|
if (!file.open(path, std::ios_base::in)) {
|
||||||
std::string msg = "Error reading at-file \""s + path + "\": " + strerror(errno);
|
style_Set(stderr, STYLE_RED, true);
|
||||||
fatal(msg.c_str());
|
fputs("FATAL: ", stderr);
|
||||||
return argvOfs; // Since we can't mark the `fatal` function pointer as [[noreturn]]
|
style_Reset(stderr);
|
||||||
|
fprintf(stderr, "Failed to open at-file \"%s\": %s\n", path.c_str(), strerror(errno));
|
||||||
|
usage.printAndExit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (;;) {
|
for (;;) {
|
||||||
@@ -71,7 +75,7 @@ void cli_ParseArgs(
|
|||||||
char const *shortOpts,
|
char const *shortOpts,
|
||||||
option const *longOpts,
|
option const *longOpts,
|
||||||
void (*parseArg)(int, char *),
|
void (*parseArg)(int, char *),
|
||||||
void (*fatal)(char const *, ...)
|
Usage usage
|
||||||
) {
|
) {
|
||||||
struct AtFileStackEntry {
|
struct AtFileStackEntry {
|
||||||
int parentInd; // Saved offset into parent argv
|
int parentInd; // Saved offset into parent argv
|
||||||
@@ -90,8 +94,7 @@ void cli_ParseArgs(
|
|||||||
for (;;) {
|
for (;;) {
|
||||||
char *atFileName = nullptr;
|
char *atFileName = nullptr;
|
||||||
for (int ch;
|
for (int ch;
|
||||||
(ch = musl_getopt_long_only(curArgc, curArgv, optString.c_str(), longOpts, nullptr))
|
(ch = musl_getopt_long_only(curArgc, curArgv, optString.c_str(), longOpts)) != -1;) {
|
||||||
!= -1;) {
|
|
||||||
if (ch == 1 && musl_optarg[0] == '@') {
|
if (ch == 1 && musl_optarg[0] == '@') {
|
||||||
atFileName = &musl_optarg[1];
|
atFileName = &musl_optarg[1];
|
||||||
break;
|
break;
|
||||||
@@ -112,7 +115,7 @@ void cli_ParseArgs(
|
|||||||
|
|
||||||
// It would be nice to compute the char pointers on the fly, but reallocs don't allow
|
// It would be nice to compute the char pointers on the fly, but reallocs don't allow
|
||||||
// that; so we must compute the offsets after the pool is fixed
|
// that; so we must compute the offsets after the pool is fixed
|
||||||
std::vector<size_t> offsets = readAtFile(&musl_optarg[1], argPool, fatal);
|
std::vector<size_t> offsets = readAtFile(&musl_optarg[1], argPool, usage);
|
||||||
stackEntry.argv.reserve(offsets.size() + 2); // Avoid a bunch of reallocs
|
stackEntry.argv.reserve(offsets.size() + 2); // Avoid a bunch of reallocs
|
||||||
for (size_t ofs : offsets) {
|
for (size_t ofs : offsets) {
|
||||||
stackEntry.argv.push_back(&argPool.data()[ofs]);
|
stackEntry.argv.push_back(&argPool.data()[ofs]);
|
||||||
|
|||||||
203
src/extern/getopt.cpp
vendored
203
src/extern/getopt.cpp
vendored
@@ -11,27 +11,24 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <wchar.h>
|
#include <wchar.h>
|
||||||
|
|
||||||
|
#include "style.hpp"
|
||||||
|
|
||||||
char *musl_optarg;
|
char *musl_optarg;
|
||||||
int musl_optind = 1, musl_opterr = 1, musl_optopt;
|
int musl_optind = 1, musl_optopt;
|
||||||
int musl_optreset = 0;
|
|
||||||
static int musl_optpos;
|
static int musl_optpos;
|
||||||
|
|
||||||
static void musl_getopt_msg(char const *a, char const *b, char const *c, size_t l) {
|
static void musl_getopt_msg(char const *msg, char const *param) {
|
||||||
FILE *f = stderr;
|
style_Set(stderr, STYLE_RED, true);
|
||||||
|
fputs("error: ", stderr);
|
||||||
if (fputs(a, f) >= 0 && fwrite(b, strlen(b), 1, f) && fwrite(c, 1, l, f) == l) {
|
style_Reset(stderr);
|
||||||
putc('\n', f);
|
fputs(msg, stderr);
|
||||||
}
|
fputs(param, stderr);
|
||||||
|
putc('\n', stderr);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int getopt(int argc, char *argv[], char const *optstring) {
|
static int musl_getopt(int argc, char *argv[], char const *optstring) {
|
||||||
int i;
|
if (!musl_optind) {
|
||||||
wchar_t c, d;
|
|
||||||
int k, l;
|
|
||||||
char *optchar;
|
|
||||||
|
|
||||||
if (!musl_optind || musl_optreset) {
|
|
||||||
musl_optreset = 0;
|
|
||||||
musl_optpos = 0;
|
musl_optpos = 0;
|
||||||
musl_optind = 1;
|
musl_optind = 1;
|
||||||
}
|
}
|
||||||
@@ -40,7 +37,9 @@ static int getopt(int argc, char *argv[], char const *optstring) {
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (argv[musl_optind][0] != '-') {
|
char *argi = argv[musl_optind];
|
||||||
|
|
||||||
|
if (argi[0] != '-') {
|
||||||
if (optstring[0] == '-') {
|
if (optstring[0] == '-') {
|
||||||
musl_optarg = argv[musl_optind++];
|
musl_optarg = argv[musl_optind++];
|
||||||
return 1;
|
return 1;
|
||||||
@@ -48,26 +47,28 @@ static int getopt(int argc, char *argv[], char const *optstring) {
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!argv[musl_optind][1]) {
|
if (!argi[1]) {
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (argv[musl_optind][1] == '-' && !argv[musl_optind][2]) {
|
if (argi[1] == '-' && !argi[2]) {
|
||||||
return musl_optind++, -1;
|
++musl_optind;
|
||||||
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!musl_optpos) {
|
if (!musl_optpos) {
|
||||||
++musl_optpos;
|
++musl_optpos;
|
||||||
}
|
}
|
||||||
k = mbtowc(&c, argv[musl_optind] + musl_optpos, MB_LEN_MAX);
|
wchar_t c;
|
||||||
|
int k = mbtowc(&c, argi + musl_optpos, MB_LEN_MAX);
|
||||||
if (k < 0) {
|
if (k < 0) {
|
||||||
k = 1;
|
k = 1;
|
||||||
c = 0xFFFD; // replacement char
|
c = 0xFFFD; // replacement char
|
||||||
}
|
}
|
||||||
optchar = argv[musl_optind] + musl_optpos;
|
char *optchar = argi + musl_optpos;
|
||||||
musl_optpos += k;
|
musl_optpos += k;
|
||||||
|
|
||||||
if (!argv[musl_optind][musl_optpos]) {
|
if (!argi[musl_optpos]) {
|
||||||
++musl_optind;
|
++musl_optind;
|
||||||
musl_optpos = 0;
|
musl_optpos = 0;
|
||||||
}
|
}
|
||||||
@@ -76,8 +77,9 @@ static int getopt(int argc, char *argv[], char const *optstring) {
|
|||||||
++optstring;
|
++optstring;
|
||||||
}
|
}
|
||||||
|
|
||||||
i = 0;
|
int i = 0;
|
||||||
d = 0;
|
wchar_t d = 0;
|
||||||
|
int l;
|
||||||
do {
|
do {
|
||||||
l = mbtowc(&d, optstring + i, MB_LEN_MAX);
|
l = mbtowc(&d, optstring + i, MB_LEN_MAX);
|
||||||
if (l > 0) {
|
if (l > 0) {
|
||||||
@@ -89,8 +91,8 @@ static int getopt(int argc, char *argv[], char const *optstring) {
|
|||||||
|
|
||||||
if (d != c || c == ':') {
|
if (d != c || c == ':') {
|
||||||
musl_optopt = c;
|
musl_optopt = c;
|
||||||
if (optstring[0] != ':' && musl_opterr) {
|
if (optstring[0] != ':') {
|
||||||
musl_getopt_msg(argv[0], ": unrecognized option: ", optchar, k);
|
musl_getopt_msg("unrecognized option: ", optchar);
|
||||||
}
|
}
|
||||||
return '?';
|
return '?';
|
||||||
}
|
}
|
||||||
@@ -105,9 +107,7 @@ static int getopt(int argc, char *argv[], char const *optstring) {
|
|||||||
if (optstring[0] == ':') {
|
if (optstring[0] == ':') {
|
||||||
return ':';
|
return ':';
|
||||||
}
|
}
|
||||||
if (musl_opterr) {
|
musl_getopt_msg("option requires an argument: ", optchar);
|
||||||
musl_getopt_msg(argv[0], ": option requires an argument: ", optchar, k);
|
|
||||||
}
|
|
||||||
return '?';
|
return '?';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -116,73 +116,27 @@ static int getopt(int argc, char *argv[], char const *optstring) {
|
|||||||
|
|
||||||
static void permute(char **argv, int dest, int src) {
|
static void permute(char **argv, int dest, int src) {
|
||||||
char *tmp = argv[src];
|
char *tmp = argv[src];
|
||||||
int i;
|
for (int i = src; i > dest; --i) {
|
||||||
|
|
||||||
for (i = src; i > dest; --i) {
|
|
||||||
argv[i] = argv[i - 1];
|
argv[i] = argv[i - 1];
|
||||||
}
|
}
|
||||||
argv[dest] = tmp;
|
argv[dest] = tmp;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int musl_getopt_long_core(
|
static int
|
||||||
int argc, char **argv, char const *optstring, option const *longopts, int *idx, int longonly
|
musl_getopt_long_core(int argc, char **argv, char const *optstring, option const *longopts) {
|
||||||
);
|
|
||||||
|
|
||||||
static int musl_getopt_long(
|
|
||||||
int argc, char **argv, char const *optstring, option const *longopts, int *idx, int longonly
|
|
||||||
) {
|
|
||||||
int ret, skipped, resumed;
|
|
||||||
|
|
||||||
if (!musl_optind || musl_optreset) {
|
|
||||||
musl_optreset = 0;
|
|
||||||
musl_optpos = 0;
|
|
||||||
musl_optind = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (musl_optind >= argc || !argv[musl_optind]) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
skipped = musl_optind;
|
|
||||||
if (optstring[0] != '+' && optstring[0] != '-') {
|
|
||||||
int i;
|
|
||||||
for (i = musl_optind;; ++i) {
|
|
||||||
if (i >= argc || !argv[i]) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
if (argv[i][0] == '-' && argv[i][1]) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
musl_optind = i;
|
|
||||||
}
|
|
||||||
resumed = musl_optind;
|
|
||||||
ret = musl_getopt_long_core(argc, argv, optstring, longopts, idx, longonly);
|
|
||||||
if (resumed > skipped) {
|
|
||||||
int i, cnt = musl_optind - resumed;
|
|
||||||
|
|
||||||
for (i = 0; i < cnt; ++i) {
|
|
||||||
permute(argv, skipped, musl_optind - 1);
|
|
||||||
}
|
|
||||||
musl_optind = skipped + cnt;
|
|
||||||
}
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int musl_getopt_long_core(
|
|
||||||
int argc, char **argv, char const *optstring, option const *longopts, int *idx, int longonly
|
|
||||||
) {
|
|
||||||
musl_optarg = 0;
|
musl_optarg = 0;
|
||||||
if (longopts && argv[musl_optind][0] == '-'
|
if (char *argi = argv[musl_optind];
|
||||||
&& ((longonly && argv[musl_optind][1] && argv[musl_optind][1] != '-')
|
!longopts || argi[0] != '-'
|
||||||
|| (argv[musl_optind][1] == '-' && argv[musl_optind][2]))) {
|
|| ((!argi[1] || argi[1] == '-') && (argi[1] != '-' || !argi[2]))) {
|
||||||
int colon = optstring[optstring[0] == '+' || optstring[0] == '-'] == ':';
|
return musl_getopt(argc, argv, optstring);
|
||||||
int i, cnt, match = 0;
|
}
|
||||||
|
|
||||||
|
bool colon = optstring[optstring[0] == '+' || optstring[0] == '-'] == ':';
|
||||||
|
int i = 0, cnt = 0, match = 0;
|
||||||
char *arg = 0, *opt, *start = argv[musl_optind] + 1;
|
char *arg = 0, *opt, *start = argv[musl_optind] + 1;
|
||||||
|
|
||||||
for (cnt = i = 0; longopts[i].name; ++i) {
|
for (; longopts[i].name; ++i) {
|
||||||
char const *name = longopts[i].name;
|
char const *name = longopts[i].name;
|
||||||
|
|
||||||
opt = start;
|
opt = start;
|
||||||
if (*opt == '-') {
|
if (*opt == '-') {
|
||||||
++opt;
|
++opt;
|
||||||
@@ -202,12 +156,10 @@ static int musl_getopt_long_core(
|
|||||||
}
|
}
|
||||||
++cnt;
|
++cnt;
|
||||||
}
|
}
|
||||||
if (cnt == 1 && longonly && arg - start == mblen(start, MB_LEN_MAX)) {
|
if (cnt == 1 && arg - start == mblen(start, MB_LEN_MAX)) {
|
||||||
int l = arg - start;
|
int l = arg - start;
|
||||||
|
|
||||||
for (i = 0; optstring[i]; ++i) {
|
for (i = 0; optstring[i]; ++i) {
|
||||||
int j = 0;
|
int j = 0;
|
||||||
|
|
||||||
while (j < l && start[j] == optstring[i + j]) {
|
while (j < l && start[j] == optstring[i + j]) {
|
||||||
++j;
|
++j;
|
||||||
}
|
}
|
||||||
@@ -224,15 +176,10 @@ static int musl_getopt_long_core(
|
|||||||
if (*opt == '=') {
|
if (*opt == '=') {
|
||||||
if (!longopts[i].has_arg) {
|
if (!longopts[i].has_arg) {
|
||||||
musl_optopt = longopts[i].val;
|
musl_optopt = longopts[i].val;
|
||||||
if (colon || !musl_opterr) {
|
if (colon) {
|
||||||
return '?';
|
return '?';
|
||||||
}
|
}
|
||||||
musl_getopt_msg(
|
musl_getopt_msg("option does not take an argument: ", longopts[i].name);
|
||||||
argv[0],
|
|
||||||
": option does not take an argument: ",
|
|
||||||
longopts[i].name,
|
|
||||||
strlen(longopts[i].name)
|
|
||||||
);
|
|
||||||
return '?';
|
return '?';
|
||||||
}
|
}
|
||||||
musl_optarg = opt + 1;
|
musl_optarg = opt + 1;
|
||||||
@@ -243,22 +190,11 @@ static int musl_getopt_long_core(
|
|||||||
if (colon) {
|
if (colon) {
|
||||||
return ':';
|
return ':';
|
||||||
}
|
}
|
||||||
if (!musl_opterr) {
|
musl_getopt_msg("option requires an argument: ", longopts[i].name);
|
||||||
return '?';
|
|
||||||
}
|
|
||||||
musl_getopt_msg(
|
|
||||||
argv[0],
|
|
||||||
": option requires an argument: ",
|
|
||||||
longopts[i].name,
|
|
||||||
strlen(longopts[i].name)
|
|
||||||
);
|
|
||||||
return '?';
|
return '?';
|
||||||
}
|
}
|
||||||
++musl_optind;
|
++musl_optind;
|
||||||
}
|
}
|
||||||
if (idx) {
|
|
||||||
*idx = i;
|
|
||||||
}
|
|
||||||
if (longopts[i].flag) {
|
if (longopts[i].flag) {
|
||||||
*longopts[i].flag = longopts[i].val;
|
*longopts[i].flag = longopts[i].val;
|
||||||
return 0;
|
return 0;
|
||||||
@@ -267,23 +203,48 @@ static int musl_getopt_long_core(
|
|||||||
}
|
}
|
||||||
if (argv[musl_optind][1] == '-') {
|
if (argv[musl_optind][1] == '-') {
|
||||||
musl_optopt = 0;
|
musl_optopt = 0;
|
||||||
if (!colon && musl_opterr) {
|
if (!colon) {
|
||||||
musl_getopt_msg(
|
musl_getopt_msg(
|
||||||
argv[0],
|
cnt ? "option is ambiguous: " : "unrecognized option: ", argv[musl_optind] + 2
|
||||||
cnt ? ": option is ambiguous: " : ": unrecognized option: ",
|
|
||||||
argv[musl_optind] + 2,
|
|
||||||
strlen(argv[musl_optind] + 2)
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
++musl_optind;
|
++musl_optind;
|
||||||
return '?';
|
return '?';
|
||||||
}
|
}
|
||||||
}
|
return musl_getopt(argc, argv, optstring);
|
||||||
return getopt(argc, argv, optstring);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int musl_getopt_long_only(
|
int musl_getopt_long_only(int argc, char **argv, char const *optstring, option const *longopts) {
|
||||||
int argc, char **argv, char const *optstring, option const *longopts, int *idx
|
if (!musl_optind) {
|
||||||
) {
|
musl_optpos = 0;
|
||||||
return musl_getopt_long(argc, argv, optstring, longopts, idx, 1);
|
musl_optind = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (musl_optind >= argc || !argv[musl_optind]) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
int skipped = musl_optind;
|
||||||
|
if (optstring[0] != '+' && optstring[0] != '-') {
|
||||||
|
int i = musl_optind;
|
||||||
|
for (;; ++i) {
|
||||||
|
if (i >= argc || !argv[i]) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
if (argv[i][0] == '-' && argv[i][1]) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
musl_optind = i;
|
||||||
|
}
|
||||||
|
int resumed = musl_optind;
|
||||||
|
int ret = musl_getopt_long_core(argc, argv, optstring, longopts);
|
||||||
|
if (resumed > skipped) {
|
||||||
|
int cnt = musl_optind - resumed;
|
||||||
|
for (int i = 0; i < cnt; ++i) {
|
||||||
|
permute(argv, skipped, musl_optind - 1);
|
||||||
|
}
|
||||||
|
musl_optind = skipped + cnt;
|
||||||
|
}
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -346,7 +346,7 @@ static void initLogo() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char *argv[]) {
|
int main(int argc, char *argv[]) {
|
||||||
cli_ParseArgs(argc, argv, optstring, longopts, parseArg, fatal);
|
cli_ParseArgs(argc, argv, optstring, longopts, parseArg, usage);
|
||||||
|
|
||||||
if ((options.cartridgeType & 0xFF00) == TPP1 && !options.japanese) {
|
if ((options.cartridgeType & 0xFF00) == TPP1 && !options.japanese) {
|
||||||
warning(
|
warning(
|
||||||
|
|||||||
@@ -639,7 +639,7 @@ static void replaceExtension(std::string &path, char const *extension) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char *argv[]) {
|
int main(int argc, char *argv[]) {
|
||||||
cli_ParseArgs(argc, argv, optstring, longopts, parseArg, fatal);
|
cli_ParseArgs(argc, argv, optstring, longopts, parseArg, usage);
|
||||||
|
|
||||||
if (options.nbColorsPerPal == 0) {
|
if (options.nbColorsPerPal == 0) {
|
||||||
options.nbColorsPerPal = 1u << options.bitDepth;
|
options.nbColorsPerPal = 1u << options.bitDepth;
|
||||||
|
|||||||
@@ -415,7 +415,7 @@ static void verboseOutputConfig() {
|
|||||||
// LCOV_EXCL_STOP
|
// LCOV_EXCL_STOP
|
||||||
|
|
||||||
int main(int argc, char *argv[]) {
|
int main(int argc, char *argv[]) {
|
||||||
cli_ParseArgs(argc, argv, optstring, longopts, parseArg, fatal);
|
cli_ParseArgs(argc, argv, optstring, longopts, parseArg, usage);
|
||||||
|
|
||||||
verboseOutputConfig();
|
verboseOutputConfig();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user