diff options
author | Thomas Rooijakkers <thomas.rooijakkers@tno.nl> | 2023-09-19 13:42:53 +0200 |
---|---|---|
committer | Thomas Rooijakkers <thomas.rooijakkers@tno.nl> | 2023-09-19 13:42:53 +0200 |
commit | 6dc054be0faa2fe934ec24465f75fb8676798d13 (patch) | |
tree | de3ca42e3d63f98979b0a30fde265d4b9d403a35 /src/afl-fuzz.c | |
parent | 54f01481571ba3a7c05a5e37b9f5021c1304834e (diff) | |
download | afl++-6dc054be0faa2fe934ec24465f75fb8676798d13.tar.gz |
Add usage compilation status print for NO_UTF
Diffstat (limited to 'src/afl-fuzz.c')
-rw-r--r-- | src/afl-fuzz.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c index cf57702f..9aaec2c7 100644 --- a/src/afl-fuzz.c +++ b/src/afl-fuzz.c @@ -381,6 +381,12 @@ static void usage(u8 *argv0, int more_help) { SAYF("Compiled with NO_SPLICING.\n"); #endif +#ifdef NO_UTF + SAYF("Compiled without UTF-8 support for line rendering in status screen.\n"); +#else + SAYF("Compiled with UTF-8 support for line rendering in status screen.\n"); +#endif + #ifdef PROFILING SAYF("Compiled with PROFILING.\n"); #endif |