summaryrefslogtreecommitdiff
path: root/src/internal/mdso_hexfmt_impl.h
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2024-04-27 19:48:23 +0000
committermidipix <writeonce@midipix.org>2024-04-27 20:21:10 +0000
commit3f97b6f6c344500e0005063d1580afdb32c333e4 (patch)
tree6565a73cf488b9e0f5f76ad74c98df75e7e21aee /src/internal/mdso_hexfmt_impl.h
parent94cf00515f7abf57abafb091a64a32cda2fab7c6 (diff)
downloadmdso-3f97b6f6c344500e0005063d1580afdb32c333e4.tar.bz2
mdso-3f97b6f6c344500e0005063d1580afdb32c333e4.tar.xz
mdso_create_implib_objects(): eliminate the use of sprintf().
Diffstat (limited to 'src/internal/mdso_hexfmt_impl.h')
-rw-r--r--src/internal/mdso_hexfmt_impl.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/internal/mdso_hexfmt_impl.h b/src/internal/mdso_hexfmt_impl.h
new file mode 100644
index 0000000..1ad74d1
--- /dev/null
+++ b/src/internal/mdso_hexfmt_impl.h
@@ -0,0 +1,14 @@
+/****************************************************************/
+/* mdso: midipix dso scavenger */
+/* Copyright (C) 2015--2024 SysDeer Technologies, LLC */
+/* Released under GPLv2 and GPLv3; see COPYING.MDSO. */
+/****************************************************************/
+
+#ifndef MDSO_HEXFMT_IMPL_H
+#define MDSO_HEXFMT_IMPL_H
+
+#include <stdint.h>
+
+void mdso_write_hex_64(char * ch, uint64_t val);
+
+#endif