aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/opendeco-cli.c
diff options
context:
space:
mode:
authorGravatar Tim Segers <tsegers@pm.me>2025-04-29 15:40:44 +0200
committerGravatar Tim Segers <tsegers@pm.me>2025-04-29 16:03:28 +0200
commit53ce5968216eb135f9299fb25cd88b894f0647aa (patch)
tree83994c164a0cc9e6ab8073210d690f954b4c1cb7 /src/opendeco-cli.c
parentb4582977251dbf07c13c4d69a4f7be04e75612d6 (diff)
downloadopendeco-53ce5968216eb135f9299fb25cd88b894f0647aa.tar.gz
Remove wchardevelop
Diffstat (limited to 'src/opendeco-cli.c')
-rw-r--r--src/opendeco-cli.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/opendeco-cli.c b/src/opendeco-cli.c
index e3fd852..bd0ed04 100644
--- a/src/opendeco-cli.c
+++ b/src/opendeco-cli.c
@@ -3,7 +3,6 @@
#include <argp.h>
#include <stdlib.h>
#include <string.h>
-#include <wchar.h>
#include "opendeco-cli.h"
@@ -52,17 +51,17 @@ static void print_xxd_arr(char *name, unsigned char *content, unsigned int len)
exit(EXIT_FAILURE);
}
- wprintf(L"--------\n\n");
- wprintf(L"License for: %s\n\n", name);
- wprintf(L"%s", tmp);
- wprintf(L"\n");
+ printf("--------\n\n");
+ printf("License for: %s\n\n", name);
+ printf("%s", tmp);
+ printf("\n");
free(tmp);
}
static void print_licenses()
{
- wprintf(L"THIRD-PARTY LICENSES:\n\n");
+ printf("THIRD-PARTY LICENSES:\n\n");
print_xxd_arr("cktan/tomlc99", toml_LICENSE, toml_LICENSE_len);
print_xxd_arr("siu/minunit", minunit_LICENSE, minunit_LICENSE_len);
}