|
LibSWOC++ 1.5.14
Solid Wall of C++
|

Go to the source code of this file.
Classes | |
| class | TextView |
Namespaces | |
| namespace | swoc |
| For template deduction guides. | |
Functions | |
| bool | swoc::operator== (IPAddr const &lhs, sockaddr const *rhs) |
| Equality. | |
| intmax_t | svtoi (TextView src, TextView *out, int base) |
| uintmax_t | svtou (TextView src, TextView *out, int base) |
IP address support.
Definition in file swoc_ip.cc.
Convert the text in TextView src to a signed numeric value.
If parsed is non-null then the part of the string actually parsed is placed there. base sets the conversion base. If not set base 10 is used with two special cases:
If base is explicitly set then any leading radix indicator is not supported.
Definition at line 45 of file TextView.cc.
Convert the text in TextView src to an unsigned numeric value.
If parsed is non-null then the part of the string actually parsed is placed there. base sets the conversion base. If not set base 10 is used with two special cases:
If base is explicitly set then any leading radix indicator is not supported.
Definition at line 81 of file TextView.cc.