GM6000 Digital Heater Controller Branch: main
SDX-1330
Namespaces | Functions
atob.h File Reference

Detailed Description

This file contains a collection of methods that wrap the standard C library functions for converting text/string to binary values.

#include <stdlib.h>
#include "colony_map.h"
#include "Cpl/System/ElapsedTime.h"
Include dependency graph for atob.h:
This graph shows which files directly or indirectly include this file:

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

bool Cpl::Text::a2i (int &convertedValue, const char *string, int base=10, const char *validStopChars=0, const char **endptr=0)
 This method converts the specified string to an integer.
 
bool Cpl::Text::a2ui (unsigned &convertedValue, const char *string, int base=10, const char *validStopChars=0, const char **endptr=0)
 This method is the same as a2i() except that it converts unsigned integer.
 
bool Cpl::Text::a2l (long &convertedValue, const char *string, int base=10, const char *validStopChars=0, const char **endptr=0)
 This method is the same as a2i() except that it converts long integer.
 
bool Cpl::Text::a2ul (unsigned long &convertedValue, const char *string, int base=10, const char *validStopChars=0, const char **endptr=0)
 This method is the same as a2i() except that it converts unsigned long integer.
 
bool Cpl::Text::a2ll (long long &convertedValue, const char *string, int base=10, const char *validStopChars=0, const char **endptr=0)
 This method is the same as a2i() except that it converts long long integer.
 
bool Cpl::Text::a2ull (unsigned long long &convertedValue, const char *string, int base=10, const char *validStopChars=0, const char **endptr=0)
 This method is the same as a2i() except that it converts unsigned long long integer.
 
bool Cpl::Text::a2d (double &convertedValue, const char *string, const char *validStopChars=0, const char **endptr=0)
 This method converts the specified string to an double.
 
bool Cpl::Text::a2b (bool &convertedValue, const char *string, const char *trueToken="T", const char *falseToken="F", const char **endptr=0)
 This method convert the specified string to an boolean.
 
long Cpl::Text::asciiHexToBuffer (void *dstBinary, const char *srcString, size_t dstMaxLen)
 This method will convert an 'ASCII HEX' string to an equivalent binary buffer, i.e.
 
long Cpl::Text::asciiBinaryToBuffer (void *dstBinary, const char *srcString, size_t dstMaxLen, bool reverse=false)
 This method will convert an 'ASCII BINARY' string to an equivalent binary buffer, i.e.
 
bool Cpl::Text::parsePrecisionTimeStamp (const char *timeStampToParse, Cpl::System::ElapsedTime::Precision_T &convertedValue)
 This method parses a 'timestamp' with the following format: [DD ]HH:MM:SS[.sss] The method returns true if the parse was successful.