blob: 1ad74d16c12d12d23aca0a20bac78f1654d59895 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
|