summaryrefslogtreecommitdiff
path: root/utils/bin2.c
diff options
context:
space:
mode:
authordweller <dweller@cabin.digital>2025-03-28 19:52:47 +0200
committerdweller <dweller@cabin.digital>2025-03-28 19:52:47 +0200
commitb41ec911812e66931f01939378979845716b6119 (patch)
tree08be727857d9881182a723af382680c48fb89434 /utils/bin2.c
parent2bcb97cade32e4781135ff4c1500b95fcf351889 (diff)
experimenting with UI
Diffstat (limited to 'utils/bin2.c')
-rwxr-xr-xutils/bin2.c79
1 files changed, 79 insertions, 0 deletions
diff --git a/utils/bin2.c b/utils/bin2.c
new file mode 100755
index 0000000..81a1ada
--- /dev/null
+++ b/utils/bin2.c
@@ -0,0 +1,79 @@
+/*
+ * Copyright (C) 2025 dwlr <dweller@cabin.digital>
+ *
+ * BSD 3-Clause License (BSD-3-Clause)
+ * See LICENSE for details
+ */
+
+
+#define _XOPEN_SOURCE 500
+
+#include <stdlib.h>
+#include <stdio.h>
+#include <errno.h>
+
+
+int main(int argc, char** argv)
+{
+ int rc = 0;
+ int ret = EXIT_SUCCESS;
+ FILE* in = stdin;
+ FILE* out = stdout;
+ const char* name = "stdin";
+ char buffer[4096] = {0};
+ size_t got = 0;
+
+ if(argc == 2)
+ {
+ name = argv[1];
+ in = fopen(name, "r");
+ if(!in)
+ {
+ perror("fopen");
+ exit(EXIT_FAILURE);
+ }
+
+ rc = snprintf(buffer, sizeof(buffer) - 1, "%s.h", name);
+ if(rc < 0)
+ {
+ perror("snprintf");
+ exit(EXIT_FAILURE);
+ }
+
+ out = fopen(buffer, "w");
+ if(!out)
+ {
+ perror("fopen");
+ fclose(in);
+ exit(EXIT_FAILURE);
+ }
+
+ }
+ else if(argc > 2) fprintf(stderr, "warning: ignoring excess paramters\n");
+
+ for(;;)
+ {
+ size_t i;
+
+ got = fread(buffer, 1, sizeof(buffer), in);
+ rc = ferror(in);
+ if(rc)
+ {
+ perror("fread");
+ ret = EXIT_FAILURE;
+ goto end;
+ }
+
+ for(i = 0; i < got; i++) fprintf(out, "'\\x%02x',", (unsigned char)buffer[i]);
+
+ rc = feof(in);
+ if(rc) break;
+ }
+
+ fprintf(out, "\n");
+
+end:
+ fclose(in);
+ fclose(out);
+ return ret;
+}