123456789101112131415161718192021222324252627282930313233343536 |
- #ifndef HEXSTRING_SOURCE
- #define HEXSTRING_SOURCE
- #include <stdint.h>
- #include "../tools/memory.h"
- char * hexstring (char buffer [], size_t length, void const * memory, size_t extent)
- {
- hexdecode (memory, extent, buffer, length);
- return ((char *)(buffer));
- }
- #endif
|