Changeset 96170 in vbox
- Timestamp:
- Aug 12, 2022 12:23:56 PM (2 years ago)
- Location:
- trunk/src/VBox/Runtime/common/string
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/strtofloat.cpp
r96158 r96170 516 516 * Optional. 517 517 * @param cchMax Number of bytes left in the string starting at @a psz. 518 * @param fPositive Whether the infinity should be positive or negative. 518 519 * @param rc The status code to return. 520 * @param iRetType The target type. 521 * @param pRet Where to store the result. 519 522 */ 520 523 static int rtStrToLongDoubleReturnInf(const char *psz, char **ppszNext, size_t cchMax, bool fPositive, … … 656 659 * Optional. 657 660 * @param cchMax Number of bytes left in the string starting at @a psz. 658 * @param rc The status code to return. 661 * @param fPositive Whether the NaN should be positive or negative. 662 * @param iRetType The target type. 663 * @param pRet Where to store the result. 659 664 */ 660 665 static int rtStrToLongDoubleReturnNan(const char *psz, char **ppszNext, size_t cchMax, bool fPositive, … … 749 754 * @param cchMax Number of bytes left in the string starting at @a psz. 750 755 * @param rc The status code to return. 756 * @param iRetType The target type. 757 * @param pRet Where to store the result. 751 758 */ 752 759 static int rtStrToLongDoubleReturnZero(const char *psz, char **ppszNext, size_t cchMax, bool fPositive, … … 786 793 * Optional. 787 794 * @param cchMax Number of bytes left in the string starting at @a psz. 788 * @param rc The status code to return. 795 * @param fPositive Whether the value should be positive or negative. 796 * @param iExponent Overflow/underflow indicator. 797 * @param iRetType The target type. 798 * @param pRet Where to store the result. 789 799 */ 790 800 static int rtStrToLongDoubleReturnOverflow(const char *psz, char **ppszNext, size_t cchMax, bool fPositive, -
trunk/src/VBox/Runtime/common/string/strtonum.cpp
r96156 r96170 944 944 * defaulting to 10. A max length of zero means no length 945 945 * restriction. 946 * @param pu8 Where to store the converted number. (optional)947 946 * @param pi16 Where to store the converted number. (optional) 948 947 */
Note:
See TracChangeset
for help on using the changeset viewer.