![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This file contains a collection of methods that convert a binary value to a text string.
Typically snprinf() is/can-be used for this - however these routines explicitly DO NOT use snprintf for the conversation. This is for platforms/situations where it is not possible or undesirable (i.e. stack usage) to call snprintf.
#include <stdlib.h>
Go to the source code of this file.
Namespaces | |
namespace | Cpl |
The 'Cpl' namespace is the root name space for the Colony. | |
namespace | Cpl::Text |
The Text namespace provides yet-another String class and additional string and/or text processing utilities. | |
Functions | |
const char * | Cpl::Text::longToStr (long num, char *dstString, size_t maxChars, unsigned base=10, char padChar=' ') |
This method converts a long to a string. | |
const char * | Cpl::Text::ulongToStr (unsigned long num, char *dstString, size_t maxChars, unsigned base=10, char padChar=' ') |
This method is same as longToStr(), except it converts a unsigned long value. | |
const char * | Cpl::Text::sizetToStr (size_t num, char *dstString, size_t maxChars, unsigned base=10, char padChar=' ') |
This method is same as longToStr(), except it converts a size_t value. | |