rtxCharStr.h File Reference
#include "rtxsrc/rtxContext.h"Go to the source code of this file.
Functions | |
| char * | rtxStrcat (char *dest, size_t bufsiz, const char *src) |
| This function concatanates the given string onto the string buffer. | |
| char * | rtxStrncat (char *dest, size_t bufsiz, const char *src, size_t nchars) |
| This function concatanates the given number of characters from the given string onto the string buffer. | |
| char * | rtxStrcpy (char *dest, size_t bufsiz, const char *src) |
| This function copies a null-terminated string to a target buffer. | |
| char * | rtxStrncpy (char *dest, size_t bufsiz, const char *src, size_t nchars) |
| This function copies the given number of characters from a string to a target buffer. | |
| int | rtxIntToCharStr (OSINT32 value, char *dest, size_t bufsiz, char padchar) |
| This function converts a signed 32-bit integer into a character string. | |
| int | rtxUIntToCharStr (OSUINT32 value, char *dest, size_t bufsiz, char padchar) |
| This function converts an unsigned 32-bit integer into a character string. | |
| int | rtxInt64ToCharStr (OSINT64 value, char *dest, size_t bufsiz, char padchar) |
| This function converts a signed 64-bit integer into a character string. | |
| int | rtxUInt64ToCharStr (OSUINT64 value, char *dest, size_t bufsiz, char padchar) |
| This function converts an unsigned 64-bit integer into a character string. | |
| int | rtxHexCharsToBinCount (const char *hexstr, size_t nchars) |
| This function returns a count of the number of bytes the would result from the conversion of a hexadecimal character string to binary. | |
| int | rtxHexCharsToBin (const char *hexstr, size_t nchars, OSOCTET *binbuf, size_t bufsize) |
| This function converts the given hex string to binary. | |
Detailed Description
Definition in file rtxCharStr.h.
