GM6000 Digital Heater Controller Branch: main
SDX-1330
btoa.h
Go to the documentation of this file.
1#ifndef Cpl_Text_btoa_h_
2#define Cpl_Text_btoa_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file
14
15 This file contains a collection of methods that convert a binary value
16 to a text string. Typically snprinf() is/can-be used for this - however
17 these routines explicitly DO NOT use snprintf for the conversation. This
18 is for platforms/situations where it is not possible or undesirable (i.e.
19 stack usage) to call snprintf.
20
21*/
22
23#include <stdlib.h>
24
25
26///
27namespace Cpl {
28///
29namespace Text {
30
31
32/** This method converts a long to a string. If the number of converted digits
33 exceeds the size of 'dstString', then the MOST significant digit(s) are
34 discarded. When 'num' is negative there will always be a leading minus
35 sign ('-') even if it means discarding a MOST significant digit. There is
36 no feedback if/when digits are discarded.
37
38 @param num number to convert
39 @param dstString buffer to hold the output
40 @param maxChars size, in bytes, of 'dstString'. Note: This includes the space for the null terminator
41 @param base Number base for conversion
42 @param padChar The character to use to pad any unused leading
43 characters in 'dstString'
44
45 @returns a pointer to the beginning of the converted number when
46 successful; else 0 is returned on error (e.g. illegal 'base'
47 value). The returned pointer is essentially a left justified
48 string of the converted value. For a right justified result,
49 use the original pointer passed as 'dstString'.
50 */
51const char* longToStr( long num, char* dstString, size_t maxChars, unsigned base=10, char padChar=' ' );
52
53
54/** This method is same as longToStr(), except it converts a unsigned long value
55 */
56const char* ulongToStr( unsigned long num, char* dstString, size_t maxChars, unsigned base=10, char padChar=' ' );
57
58
59/** This method is same as longToStr(), except it converts a size_t value
60 */
61const char* sizetToStr( size_t num, char* dstString, size_t maxChars, unsigned base=10, char padChar=' ' );
62
63
64
65
66}; // end namespaces
67};
68#endif // end header latch
const char * 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.
const char * 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 * longToStr(long num, char *dstString, size_t maxChars, unsigned base=10, char padChar=' ')
This method converts a long to a string.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20