12345678910111213141516171819202122232425262728293031323334353637 |
- /*====================================================================*
- *
- * char const * decstring ( char buffer [], size_t length, void const * memory, size_t extent);
- *
- * memory.h
- *
- * decode a memory region into a decimal character buffer and
- * return the buffer address;
- *
- * allow four string characters for each memory byte; this means
- * that the buffer must hold at least four characters or nothing
- * will be decoded;
- *
- * Motley Tools by Charles Maier <cmaier@cmassoc.net>;
- * Copyright (c) 2001-2006 by Charles Maier Associates;
- * Licensed under the Internet Software Consortium License;
- *
- *--------------------------------------------------------------------*/
- #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
|