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