|
Wireshark 4.7.0
The Wireshark network protocol analyzer
|
#include <stdbool.h>#include <inttypes.h>#include "ws_symbol_export.h"Go to the source code of this file.
Functions | |
| WS_DLL_PUBLIC bool | ws_strtoi64 (const char *str, const char **endptr, int64_t *cint) |
| Convert a decimal string to a signed/unsigned int, with error checks. | |
| WS_DLL_PUBLIC bool | ws_strtoi32 (const char *str, const char **endptr, int32_t *cint) |
| Convert a string to an integer of specified size. | |
| WS_DLL_PUBLIC bool | ws_strtoi16 (const char *str, const char **endptr, int16_t *cint) |
| Convert a string to a 16-bit integer. | |
| WS_DLL_PUBLIC bool | ws_strtoi8 (const char *str, const char **endptr, int8_t *cint) |
| Convert a string to an 8-bit integer. | |
| WS_DLL_PUBLIC bool | ws_strtoi (const char *str, const char **endptr, int *cint) |
| Convert a string to an integer. | |
| WS_DLL_PUBLIC bool | ws_strtou64 (const char *str, const char **endptr, uint64_t *cint) |
| Convert a decimal string to a 64-bit unsigned int, with error checks. | |
| WS_DLL_PUBLIC bool | ws_strtou32 (const char *str, const char **endptr, uint32_t *cint) |
| Convert a decimal string to a 32-bit unsigned int, with error checks. | |
| WS_DLL_PUBLIC bool | ws_strtou16 (const char *str, const char **endptr, uint16_t *cint) |
| Convert a decimal string to an unsigned int, with error checks. | |
| WS_DLL_PUBLIC bool | ws_strtou8 (const char *str, const char **endptr, uint8_t *cint) |
| Convert a decimal string to an unsigned int, with error checks. | |
| WS_DLL_PUBLIC bool | ws_strtou (const char *str, const char **endptr, unsigned *cint) |
| Convert a decimal string to an unsigned int, with error checks. | |
| WS_DLL_PUBLIC bool | ws_hexstrtou64 (const char *str, const char **endptr, uint64_t *cint) |
| Convert a hexadecimal string to an unsigned int, with error checks. | |
| WS_DLL_PUBLIC bool | ws_hexstrtou32 (const char *str, const char **endptr, uint32_t *cint) |
| Convert a hexadecimal string to an 32-bit unsigned int, with error checks. | |
| WS_DLL_PUBLIC bool | ws_hexstrtou16 (const char *str, const char **endptr, uint16_t *cint) |
| Convert a hexadecimal string to an 16-bit unsigned int, with error checks. | |
| WS_DLL_PUBLIC bool | ws_hexstrtou8 (const char *str, const char **endptr, uint8_t *cint) |
| Convert a hexadecimal string in the specified base to an 8-bit unsigned int, with error checks. | |
| WS_DLL_PUBLIC bool | ws_hexstrtou (const char *str, const char **endptr, unsigned *cint) |
| Convert a hexadecimal string to an unsigned int, with error checks. | |
| WS_DLL_PUBLIC bool | ws_basestrtou64 (const char *str, const char **endptr, uint64_t *cint, int base) |
| Convert a string in the specified base to a 64-bit unsigned int, with error checks. | |
| WS_DLL_PUBLIC bool | ws_basestrtou32 (const char *str, const char **endptr, uint32_t *cint, int base) |
| Convert a string in the specified base to a 32-bit unsigned int, with error checks. | |
| WS_DLL_PUBLIC bool | ws_basestrtou16 (const char *str, const char **endptr, uint16_t *cint, int base) |
| Convert a string in the specified base to a 16-bit unsigned int, with error checks. | |
| WS_DLL_PUBLIC bool | ws_basestrtou8 (const char *str, const char **endptr, uint8_t *cint, int base) |
| Convert a string in the specified base to an 8-bit unsigned int, with error checks. | |
| WS_DLL_PUBLIC bool | ws_basestrtou (const char *str, const char **endptr, unsigned *cint, int base) |
| Convert a string in the specified base to an unsigned int, with error checks. | |
| WS_DLL_PUBLIC bool | ws_basebuftou64 (const uint8_t *buf, size_t len, const uint8_t **endptr, uint64_t *cint, int base) |
| Convert a counted string (not necessarily null terminated, of the given length) in the specified base to an unsigned 64-bit integer, with error checks. | |
| WS_DLL_PUBLIC bool | ws_buftou64 (const uint8_t *buf, size_t len, const uint8_t **endptr, uint64_t *cint) |
| Convert a counted decimal string (not necessarily null terminated, of the given length) to an unsigned 64-bit integer, with error checks. | |
| WS_DLL_PUBLIC bool | ws_hexbuftou64 (const uint8_t *buf, size_t len, const uint8_t **endptr, uint64_t *cint) |
| Convert a counted hexadecimal string (not necessarily null terminated, of the given length) to an unsigned 64-bit integer, with error checks. | |
| WS_DLL_PUBLIC bool | ws_basebuftou32 (const uint8_t *buf, size_t len, const uint8_t **endptr, uint32_t *cint, int base) |
| Parse a uint32_t from a byte buffer using a specified numeric base. | |
| WS_DLL_PUBLIC bool | ws_buftou32 (const uint8_t *buf, size_t len, const uint8_t **endptr, uint32_t *cint) |
| Parse a uint32_t from a byte buffer in base 10. | |
| WS_DLL_PUBLIC bool | ws_hexbuftou32 (const uint8_t *buf, size_t len, const uint8_t **endptr, uint32_t *cint) |
| Parse a uint32_t from a byte buffer in base 16 (hexadecimal). | |
| WS_DLL_PUBLIC bool | ws_basebuftou16 (const uint8_t *buf, size_t len, const uint8_t **endptr, uint16_t *cint, int base) |
| Parse a uint16_t from a byte buffer using a specified numeric base. | |
| WS_DLL_PUBLIC bool | ws_buftou16 (const uint8_t *buf, size_t len, const uint8_t **endptr, uint16_t *cint) |
| Parse a uint16_t from a byte buffer in base 10. | |
| WS_DLL_PUBLIC bool | ws_hexbuftou16 (const uint8_t *buf, size_t len, const uint8_t **endptr, uint16_t *cint) |
| Parse a uint16_t from a byte buffer in base 16 (hexadecimal). | |
| WS_DLL_PUBLIC bool | ws_basebuftou8 (const uint8_t *buf, size_t len, const uint8_t **endptr, uint8_t *cint, int base) |
| Parse a uint8_t from a byte buffer using a specified numeric base. | |
| WS_DLL_PUBLIC bool | ws_buftou8 (const uint8_t *buf, size_t len, const uint8_t **endptr, uint8_t *cint) |
| Parse a uint8_t from a byte buffer in base 10. | |
| WS_DLL_PUBLIC bool | ws_hexbuftou8 (const uint8_t *buf, size_t len, const uint8_t **endptr, uint8_t *cint) |
| Parse a uint8_t from a byte buffer in base 16 (hexadecimal). | |
| WS_DLL_PUBLIC bool | ws_basebuftoi64 (const uint8_t *buf, size_t len, const uint8_t **endptr, int64_t *cint, int base) |
| Convert a counted string (not necessarily null terminated, of the given length) in the specified base to a signed 64-bit integer, with error checks. | |
| WS_DLL_PUBLIC bool | ws_buftoi64 (const uint8_t *buf, size_t len, const uint8_t **endptr, int64_t *cint) |
| Convert a counted decimal string (not necessarily null terminated, of the given length) to a signed 64-bit integer, with error checks. | |
| WS_DLL_PUBLIC bool | ws_hexbuftoi64 (const uint8_t *buf, size_t len, const uint8_t **endptr, int64_t *cint) |
| Convert a counted hexadecimal string (not necessarily null terminated, of the given length) to a signed 64-bit integer, with error checks. | |
| WS_DLL_PUBLIC bool | ws_basebuftoi32 (const uint8_t *buf, size_t len, const uint8_t **endptr, int32_t *cint, int base) |
| Parse an int32_t from a byte buffer using a specified numeric base. | |
| WS_DLL_PUBLIC bool | ws_buftoi32 (const uint8_t *buf, size_t len, const uint8_t **endptr, int32_t *cint) |
| Parse an int32_t from a byte buffer in base 10. | |
| WS_DLL_PUBLIC bool | ws_hexbuftoi32 (const uint8_t *buf, size_t len, const uint8_t **endptr, int32_t *cint) |
| Parse an int32_t from a byte buffer in base 16 (hexadecimal). | |
| WS_DLL_PUBLIC bool | ws_basebuftoi16 (const uint8_t *buf, size_t len, const uint8_t **endptr, int16_t *cint, int base) |
| Parse an int16_t from a byte buffer using a specified numeric base. | |
| WS_DLL_PUBLIC bool | ws_buftoi16 (const uint8_t *buf, size_t len, const uint8_t **endptr, int16_t *cint) |
| Parse an int16_t from a byte buffer in base 10. | |
| WS_DLL_PUBLIC bool | ws_hexbuftoi16 (const uint8_t *buf, size_t len, const uint8_t **endptr, int16_t *cint) |
| Parse an int16_t from a byte buffer in base 16 (hexadecimal). | |
| WS_DLL_PUBLIC bool | ws_basebuftoi8 (const uint8_t *buf, size_t len, const uint8_t **endptr, int8_t *cint, int base) |
| Parse an int8_t from a byte buffer using a specified numeric base. | |
| WS_DLL_PUBLIC bool | ws_buftoi8 (const uint8_t *buf, size_t len, const uint8_t **endptr, int8_t *cint) |
| Parse an int8_t from a byte buffer in base 10. | |
| WS_DLL_PUBLIC bool | ws_hexbuftoi8 (const uint8_t *buf, size_t len, const uint8_t **endptr, int8_t *cint) |
| Parse an int8_t from a byte buffer in base 16 (hexadecimal). | |
Utilities to convert strings to integers
Copyright 2016, Dario Lombardo
Wireshark - Network traffic analyzer By Gerald Combs geral.nosp@m.d@wi.nosp@m.resha.nosp@m.rk.o.nosp@m.rg Copyright 1998 Gerald Combs
SPDX-License-Identifier: GPL-2.0-or-later
| WS_DLL_PUBLIC bool ws_basebuftoi16 | ( | const uint8_t * | buf, |
| size_t | len, | ||
| const uint8_t ** | endptr, | ||
| int16_t * | cint, | ||
| int | base | ||
| ) |
Parse an int16_t from a byte buffer using a specified numeric base.
| buf | Pointer to the input byte buffer. |
| len | Number of bytes available in buf. |
| endptr | Set to one past the last byte consumed; NULL to ignore. |
| cint | Receives the parsed int16_t value on success. |
| base | Numeric base to use for parsing (e.g. 10, 16). |
| WS_DLL_PUBLIC bool ws_basebuftoi32 | ( | const uint8_t * | buf, |
| size_t | len, | ||
| const uint8_t ** | endptr, | ||
| int32_t * | cint, | ||
| int | base | ||
| ) |
Parse an int32_t from a byte buffer using a specified numeric base.
| buf | Pointer to the input byte buffer. |
| len | Number of bytes available in buf. |
| endptr | Set to one past the last byte consumed; NULL to ignore. |
| cint | Receives the parsed int32_t value on success. |
| base | Numeric base to use for parsing (e.g. 10, 16). |
| WS_DLL_PUBLIC bool ws_basebuftoi64 | ( | const uint8_t * | buf, |
| size_t | len, | ||
| const uint8_t ** | endptr, | ||
| int64_t * | cint, | ||
| int | base | ||
| ) |
Convert a counted string (not necessarily null terminated, of the given length) in the specified base to a signed 64-bit integer, with error checks.
| buf | The string buffer to convert |
| len | The length of the string |
| endptr | A pointer that will store a pointer to the first invalid character in str, allowing a number to be parsed even if there is trailing whitespace. If NULL, then the string is assumed to contain only valid characters (or it will error out). |
| cint | The converted integer |
| base | The base for the integer; 0 means "if it begins with 0x, it's hex, otherwise if it begins with 0, it's octal, otherwise it's decimal". |
| WS_DLL_PUBLIC bool ws_basebuftoi8 | ( | const uint8_t * | buf, |
| size_t | len, | ||
| const uint8_t ** | endptr, | ||
| int8_t * | cint, | ||
| int | base | ||
| ) |
Parse an int8_t from a byte buffer using a specified numeric base.
| buf | Pointer to the input byte buffer. |
| len | Number of bytes available in buf. |
| endptr | Set to one past the last byte consumed; NULL to ignore. |
| cint | Receives the parsed int8_t value on success. |
| base | Numeric base to use for parsing (e.g. 10, 16). |
| WS_DLL_PUBLIC bool ws_basebuftou16 | ( | const uint8_t * | buf, |
| size_t | len, | ||
| const uint8_t ** | endptr, | ||
| uint16_t * | cint, | ||
| int | base | ||
| ) |
Parse a uint16_t from a byte buffer using a specified numeric base.
| buf | Pointer to the input byte buffer. |
| len | Number of bytes available in buf. |
| endptr | Set to one past the last byte consumed; NULL to ignore. |
| cint | Receives the parsed uint16_t value on success. |
| base | Numeric base to use for parsing (e.g. 10, 16). |
| WS_DLL_PUBLIC bool ws_basebuftou32 | ( | const uint8_t * | buf, |
| size_t | len, | ||
| const uint8_t ** | endptr, | ||
| uint32_t * | cint, | ||
| int | base | ||
| ) |
Parse a uint32_t from a byte buffer using a specified numeric base.
Reads up to len bytes from buf, interpreting them as an unsigned integer in the given base. On success, stores the result in cint and sets endptr to one past the last consumed byte.
| buf | Pointer to the input byte buffer. |
| len | Number of bytes available in buf. |
| endptr | Set to one past the last byte consumed; NULL to ignore. |
| cint | Receives the parsed uint32_t value on success. |
| base | Numeric base to use for parsing (e.g. 10, 16). |
| WS_DLL_PUBLIC bool ws_basebuftou64 | ( | const uint8_t * | buf, |
| size_t | len, | ||
| const uint8_t ** | endptr, | ||
| uint64_t * | cint, | ||
| int | base | ||
| ) |
Convert a counted string (not necessarily null terminated, of the given length) in the specified base to an unsigned 64-bit integer, with error checks.
| buf | The string buffer to convert |
| len | The length of the string |
| endptr | A pointer that will store a pointer to the first invalid character in str, allowing a number to be parsed even if there is trailing whitespace. If NULL, then the string is assumed to contain only valid characters (or it will error out). |
| cint | The converted integer |
| base | The base for the integer; 0 means "if it begins with 0x, it's hex, otherwise if it begins with 0, it's octal, otherwise it's decimal". |
| WS_DLL_PUBLIC bool ws_basebuftou8 | ( | const uint8_t * | buf, |
| size_t | len, | ||
| const uint8_t ** | endptr, | ||
| uint8_t * | cint, | ||
| int | base | ||
| ) |
Parse a uint8_t from a byte buffer using a specified numeric base.
| buf | Pointer to the input byte buffer. |
| len | Number of bytes available in buf. |
| endptr | Set to one past the last byte consumed; NULL to ignore. |
| cint | Receives the parsed uint8_t value on success. |
| base | Numeric base to use for parsing (e.g. 10, 16). |
| WS_DLL_PUBLIC bool ws_basestrtou | ( | const char * | str, |
| const char ** | endptr, | ||
| unsigned * | cint, | ||
| int | base | ||
| ) |
Convert a string in the specified base to an unsigned int, with error checks.
| str | The string to convert |
| endptr | A pointer that will store a pointer to the first invalid character in str, allowing a number to be parsed even if there is trailing whitespace. If NULL, then the string is assumed to contain only valid characters (or it will error out). |
| cint | The converted integer |
| base | The base for the integer; 0 means "if it begins with 0x, it's hex, otherwise if it begins with 0, it's octal, otherwise it's decimal". |
| WS_DLL_PUBLIC bool ws_basestrtou16 | ( | const char * | str, |
| const char ** | endptr, | ||
| uint16_t * | cint, | ||
| int | base | ||
| ) |
Convert a string in the specified base to a 16-bit unsigned int, with error checks.
| str | The string to convert |
| endptr | A pointer that will store a pointer to the first invalid character in str, allowing a number to be parsed even if there is trailing whitespace. If NULL, then the string is assumed to contain only valid characters (or it will error out). |
| cint | The converted integer |
| base | The base for the integer; 0 means "if it begins with 0x, it's hex, otherwise if it begins with 0, it's octal, otherwise it's decimal". |
| WS_DLL_PUBLIC bool ws_basestrtou32 | ( | const char * | str, |
| const char ** | endptr, | ||
| uint32_t * | cint, | ||
| int | base | ||
| ) |
Convert a string in the specified base to a 32-bit unsigned int, with error checks.
| str | The string to convert |
| endptr | A pointer that will store a pointer to the first invalid character in str, allowing a number to be parsed even if there is trailing whitespace. If NULL, then the string is assumed to contain only valid characters (or it will error out). |
| cint | The converted integer |
| base | The base for the integer; 0 means "if it begins with 0x, it's hex, otherwise if it begins with 0, it's octal, otherwise it's decimal". |
| WS_DLL_PUBLIC bool ws_basestrtou64 | ( | const char * | str, |
| const char ** | endptr, | ||
| uint64_t * | cint, | ||
| int | base | ||
| ) |
Convert a string in the specified base to a 64-bit unsigned int, with error checks.
| str | The string to convert |
| endptr | A pointer that will store a pointer to the first invalid character in str, allowing a number to be parsed even if there is trailing whitespace. If NULL, then the string is assumed to contain only valid characters (or it will error out). |
| cint | The converted integer |
| base | The base for the integer; 0 means "if it begins with 0x, it's hex, otherwise if it begins with 0, it's octal, otherwise it's decimal". |
| WS_DLL_PUBLIC bool ws_basestrtou8 | ( | const char * | str, |
| const char ** | endptr, | ||
| uint8_t * | cint, | ||
| int | base | ||
| ) |
Convert a string in the specified base to an 8-bit unsigned int, with error checks.
| str | The string to convert |
| endptr | A pointer that will store a pointer to the first invalid character in str, allowing a number to be parsed even if there is trailing whitespace. If NULL, then the string is assumed to contain only valid characters (or it will error out). |
| cint | The converted integer |
| base | The base for the integer; 0 means "if it begins with 0x, it's hex, otherwise if it begins with 0, it's octal, otherwise it's decimal". |
| WS_DLL_PUBLIC bool ws_buftoi16 | ( | const uint8_t * | buf, |
| size_t | len, | ||
| const uint8_t ** | endptr, | ||
| int16_t * | cint | ||
| ) |
Parse an int16_t from a byte buffer in base 10.
| buf | Pointer to the input byte buffer. |
| len | Number of bytes available in buf. |
| endptr | Set to one past the last byte consumed; NULL to ignore. |
| cint | Receives the parsed int16_t value on success. |
| WS_DLL_PUBLIC bool ws_buftoi32 | ( | const uint8_t * | buf, |
| size_t | len, | ||
| const uint8_t ** | endptr, | ||
| int32_t * | cint | ||
| ) |
Parse an int32_t from a byte buffer in base 10.
| buf | Pointer to the input byte buffer. |
| len | Number of bytes available in buf. |
| endptr | Set to one past the last byte consumed; NULL to ignore. |
| cint | Receives the parsed int32_t value on success. |
| WS_DLL_PUBLIC bool ws_buftoi64 | ( | const uint8_t * | buf, |
| size_t | len, | ||
| const uint8_t ** | endptr, | ||
| int64_t * | cint | ||
| ) |
Convert a counted decimal string (not necessarily null terminated, of the given length) to a signed 64-bit integer, with error checks.
| buf | The string buffer to convert |
| len | The length of the string |
| endptr | A pointer that will store a pointer to the first invalid character in str, allowing a number to be parsed even if there is trailing whitespace. If NULL, then the string is assumed to contain only valid characters (or it will error out). |
| cint | The converted integer |
| WS_DLL_PUBLIC bool ws_buftoi8 | ( | const uint8_t * | buf, |
| size_t | len, | ||
| const uint8_t ** | endptr, | ||
| int8_t * | cint | ||
| ) |
Parse an int8_t from a byte buffer in base 10.
| buf | Pointer to the input byte buffer. |
| len | Number of bytes available in buf. |
| endptr | Set to one past the last byte consumed; NULL to ignore. |
| cint | Receives the parsed int8_t value on success. |
| WS_DLL_PUBLIC bool ws_buftou16 | ( | const uint8_t * | buf, |
| size_t | len, | ||
| const uint8_t ** | endptr, | ||
| uint16_t * | cint | ||
| ) |
Parse a uint16_t from a byte buffer in base 10.
Convenience wrapper around ws_basebuftou16() using base 10.
| buf | Pointer to the input byte buffer. |
| len | Number of bytes available in buf. |
| endptr | Set to one past the last byte consumed; NULL to ignore. |
| cint | Receives the parsed uint16_t value on success. |
| WS_DLL_PUBLIC bool ws_buftou32 | ( | const uint8_t * | buf, |
| size_t | len, | ||
| const uint8_t ** | endptr, | ||
| uint32_t * | cint | ||
| ) |
Parse a uint32_t from a byte buffer in base 10.
Convenience wrapper around ws_basebuftou32() using base 10.
| buf | Pointer to the input byte buffer. |
| len | Number of bytes available in buf. |
| endptr | Set to one past the last byte consumed; NULL to ignore. |
| cint | Receives the parsed uint32_t value on success. |
| WS_DLL_PUBLIC bool ws_buftou64 | ( | const uint8_t * | buf, |
| size_t | len, | ||
| const uint8_t ** | endptr, | ||
| uint64_t * | cint | ||
| ) |
Convert a counted decimal string (not necessarily null terminated, of the given length) to an unsigned 64-bit integer, with error checks.
| buf | The string buffer to convert |
| len | The length of the string |
| endptr | A pointer that will store a pointer to the first invalid character in str, allowing a number to be parsed even if there is trailing whitespace. If NULL, then the string is assumed to contain only valid characters (or it will error out). |
| cint | The converted integer |
| WS_DLL_PUBLIC bool ws_buftou8 | ( | const uint8_t * | buf, |
| size_t | len, | ||
| const uint8_t ** | endptr, | ||
| uint8_t * | cint | ||
| ) |
Parse a uint8_t from a byte buffer in base 10.
Convenience wrapper around ws_basebuftou8() using base 10.
| buf | Pointer to the input byte buffer. |
| len | Number of bytes available in buf. |
| endptr | Set to one past the last byte consumed; NULL to ignore. |
| cint | Receives the parsed uint8_t value on success. |
| WS_DLL_PUBLIC bool ws_hexbuftoi16 | ( | const uint8_t * | buf, |
| size_t | len, | ||
| const uint8_t ** | endptr, | ||
| int16_t * | cint | ||
| ) |
Parse an int16_t from a byte buffer in base 16 (hexadecimal).
| buf | Pointer to the input byte buffer. |
| len | Number of bytes available in buf. |
| endptr | Set to one past the last byte consumed; NULL to ignore. |
| cint | Receives the parsed int16_t value on success. |
| WS_DLL_PUBLIC bool ws_hexbuftoi32 | ( | const uint8_t * | buf, |
| size_t | len, | ||
| const uint8_t ** | endptr, | ||
| int32_t * | cint | ||
| ) |
Parse an int32_t from a byte buffer in base 16 (hexadecimal).
| buf | Pointer to the input byte buffer. |
| len | Number of bytes available in buf. |
| endptr | Set to one past the last byte consumed; NULL to ignore. |
| cint | Receives the parsed int32_t value on success. |
| WS_DLL_PUBLIC bool ws_hexbuftoi64 | ( | const uint8_t * | buf, |
| size_t | len, | ||
| const uint8_t ** | endptr, | ||
| int64_t * | cint | ||
| ) |
Convert a counted hexadecimal string (not necessarily null terminated, of the given length) to a signed 64-bit integer, with error checks.
| buf | The string buffer to convert |
| len | The length of the string |
| endptr | A pointer that will store a pointer to the first invalid character in str, allowing a number to be parsed even if there is trailing whitespace. If NULL, then the string is assumed to contain only valid characters (or it will error out). |
| cint | The converted integer |
| WS_DLL_PUBLIC bool ws_hexbuftoi8 | ( | const uint8_t * | buf, |
| size_t | len, | ||
| const uint8_t ** | endptr, | ||
| int8_t * | cint | ||
| ) |
Parse an int8_t from a byte buffer in base 16 (hexadecimal).
| buf | Pointer to the input byte buffer. |
| len | Number of bytes available in buf. |
| endptr | Set to one past the last byte consumed; NULL to ignore. |
| cint | Receives the parsed int8_t value on success. |
| WS_DLL_PUBLIC bool ws_hexbuftou16 | ( | const uint8_t * | buf, |
| size_t | len, | ||
| const uint8_t ** | endptr, | ||
| uint16_t * | cint | ||
| ) |
Parse a uint16_t from a byte buffer in base 16 (hexadecimal).
Convenience wrapper around ws_basebuftou16() using base 16.
| buf | Pointer to the input byte buffer. |
| len | Number of bytes available in buf. |
| endptr | Set to one past the last byte consumed; NULL to ignore. |
| cint | Receives the parsed uint16_t value on success. |
| WS_DLL_PUBLIC bool ws_hexbuftou32 | ( | const uint8_t * | buf, |
| size_t | len, | ||
| const uint8_t ** | endptr, | ||
| uint32_t * | cint | ||
| ) |
Parse a uint32_t from a byte buffer in base 16 (hexadecimal).
Convenience wrapper around ws_basebuftou32() using base 16.
| buf | Pointer to the input byte buffer. |
| len | Number of bytes available in buf. |
| endptr | Set to one past the last byte consumed; NULL to ignore. |
| cint | Receives the parsed uint32_t value on success. |
| WS_DLL_PUBLIC bool ws_hexbuftou64 | ( | const uint8_t * | buf, |
| size_t | len, | ||
| const uint8_t ** | endptr, | ||
| uint64_t * | cint | ||
| ) |
Convert a counted hexadecimal string (not necessarily null terminated, of the given length) to an unsigned 64-bit integer, with error checks.
| buf | The string buffer to convert |
| len | The length of the string |
| endptr | A pointer that will store a pointer to the first invalid character in str, allowing a number to be parsed even if there is trailing whitespace. If NULL, then the string is assumed to contain only valid characters (or it will error out). |
| cint | The converted integer |
| WS_DLL_PUBLIC bool ws_hexbuftou8 | ( | const uint8_t * | buf, |
| size_t | len, | ||
| const uint8_t ** | endptr, | ||
| uint8_t * | cint | ||
| ) |
Parse a uint8_t from a byte buffer in base 16 (hexadecimal).
Convenience wrapper around ws_basebuftou8() using base 16.
| buf | Pointer to the input byte buffer. |
| len | Number of bytes available in buf. |
| endptr | Set to one past the last byte consumed; NULL to ignore. |
| cint | Receives the parsed uint8_t value on success. |
| WS_DLL_PUBLIC bool ws_hexstrtou | ( | const char * | str, |
| const char ** | endptr, | ||
| unsigned * | cint | ||
| ) |
Convert a hexadecimal string to an unsigned int, with error checks.
| str | The hexadecimal string to convert. |
| endptr | A pointer that will store a pointer to the first invalid character in str, allowing a number to be parsed even if there is trailing whitespace. If NULL, then the string is assumed to contain only valid characters. |
| WS_DLL_PUBLIC bool ws_hexstrtou16 | ( | const char * | str, |
| const char ** | endptr, | ||
| uint16_t * | cint | ||
| ) |
Convert a hexadecimal string to an 16-bit unsigned int, with error checks.
| str | The hexadecimal string to convert. |
| endptr | A pointer that will store a pointer to the first invalid character encountered during conversion. |
| WS_DLL_PUBLIC bool ws_hexstrtou32 | ( | const char * | str, |
| const char ** | endptr, | ||
| uint32_t * | cint | ||
| ) |
Convert a hexadecimal string to an 32-bit unsigned int, with error checks.
| str | The hexadecimal string to convert. |
| endptr | A pointer that will store a pointer to the first invalid character encountered during conversion. |
| WS_DLL_PUBLIC bool ws_hexstrtou64 | ( | const char * | str, |
| const char ** | endptr, | ||
| uint64_t * | cint | ||
| ) |
Convert a hexadecimal string to an unsigned int, with error checks.
| str | The hexadecimal string to convert |
| endptr | A pointer that will store a pointer to the first invalid character in str, allowing a number to be parsed even if there is trailing whitespace. If NULL, then the string is assumed to contain only valid characters (or it will error out). |
| cint | The converted integer |
| WS_DLL_PUBLIC bool ws_hexstrtou8 | ( | const char * | str, |
| const char ** | endptr, | ||
| uint8_t * | cint | ||
| ) |
Convert a hexadecimal string in the specified base to an 8-bit unsigned int, with error checks.
| str | The hexadecimal string to convert. |
| endptr | A pointer that will store a pointer to the first invalid character encountered during conversion. |
| WS_DLL_PUBLIC bool ws_strtoi | ( | const char * | str, |
| const char ** | endptr, | ||
| int * | cint | ||
| ) |
Convert a string to an integer.
Converts the initial part of the string pointed to by 'str' to an int.
| str | The string to be converted. |
| endptr | A pointer to a char pointer that will receive the address of the first character not converted. |
| cint | A pointer to an int where the result will be stored. |
| WS_DLL_PUBLIC bool ws_strtoi16 | ( | const char * | str, |
| const char ** | endptr, | ||
| int16_t * | cint | ||
| ) |
Convert a string to a 16-bit integer.
Converts the initial portion of the string pointed to by str to an int value.
| str | The string to be converted. |
| endptr | A pointer to a char pointer that will receive the address of the first character not part of the conversion. |
| cint | Pointer to the location where the result should be stored. |
| WS_DLL_PUBLIC bool ws_strtoi32 | ( | const char * | str, |
| const char ** | endptr, | ||
| int32_t * | cint | ||
| ) |
Convert a string to an integer of specified size.
Converts a string to an integer of the specified size and stores the result in the provided variable.
| str | The input string to convert. |
| endptr | A pointer to a character that will be set to point to the first character after the converted number. |
| cint | A pointer to the variable where the converted integer will be stored. |
| WS_DLL_PUBLIC bool ws_strtoi64 | ( | const char * | str, |
| const char ** | endptr, | ||
| int64_t * | cint | ||
| ) |
Convert a decimal string to a signed/unsigned int, with error checks.
| str | The string to convert |
| endptr | A pointer that will store a pointer to the first invalid character in str, allowing a number to be parsed even if there is trailing whitespace. If NULL, then the string is assumed to contain only valid characters (or it will error out). |
| cint | The converted integer |
| WS_DLL_PUBLIC bool ws_strtoi8 | ( | const char * | str, |
| const char ** | endptr, | ||
| int8_t * | cint | ||
| ) |
Convert a string to an 8-bit integer.
Converts the initial portion of the string pointed to by str to an int value.
| str | The string to be converted. |
| endptr | A pointer to a char pointer that will receive the address of the first character not part of the conversion. |
| cint | Pointer to the location where the result should be stored. |
| WS_DLL_PUBLIC bool ws_strtou | ( | const char * | str, |
| const char ** | endptr, | ||
| unsigned * | cint | ||
| ) |
Convert a decimal string to an unsigned int, with error checks.
| str | The string to convert |
| endptr | A pointer that will store a pointer to the first invalid character in str, allowing a number to be parsed even if there is trailing whitespace. If NULL, then the string is assumed to contain only valid characters (or it will error out). |
| WS_DLL_PUBLIC bool ws_strtou16 | ( | const char * | str, |
| const char ** | endptr, | ||
| uint16_t * | cint | ||
| ) |
Convert a decimal string to an unsigned int, with error checks.
| str | The string to convert |
| endptr | A pointer to a char pointer that will receive the address of the first character not converted. |
| WS_DLL_PUBLIC bool ws_strtou32 | ( | const char * | str, |
| const char ** | endptr, | ||
| uint32_t * | cint | ||
| ) |
Convert a decimal string to a 32-bit unsigned int, with error checks.
| str | The string to convert |
| endptr | A pointer to a char pointer that will receive the address of the first character not converted. |
| cint | A pointer to a uint32_t where the result will be stored. |
| WS_DLL_PUBLIC bool ws_strtou64 | ( | const char * | str, |
| const char ** | endptr, | ||
| uint64_t * | cint | ||
| ) |
Convert a decimal string to a 64-bit unsigned int, with error checks.
| str | The string to convert |
| endptr | A pointer to a char pointer that will receive the address of the first character not converted. |
| cint | A pointer to a uint64_t where the result will be stored. |
| WS_DLL_PUBLIC bool ws_strtou8 | ( | const char * | str, |
| const char ** | endptr, | ||
| uint8_t * | cint | ||
| ) |
Convert a decimal string to an unsigned int, with error checks.
| str | The string to convert |
| endptr | A pointer that will store a pointer to the first invalid character in str, allowing a number to be parsed even if there is trailing whitespace. If NULL, then the string is assumed to contain only valid characters. |