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