Changeset 460 in vbox for trunk/include
- Timestamp:
- Jan 31, 2007 11:14:01 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 18043
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/string.h
r331 r460 614 614 615 615 616 /** @defgroup rt_str_conv String To/From Number Conver tions616 /** @defgroup rt_str_conv String To/From Number Conversions 617 617 * @ingroup grp_rt_str 618 618 * @{ */ … … 622 622 * 623 623 * @returns iprt status code. 624 * Warnings are used to indicate conver tion problems.624 * Warnings are used to indicate conversion problems. 625 625 * @param pszValue Pointer to the string value. 626 626 * @param ppszNext Where to store the pointer to the first char following the number. (Optional) 627 627 * @param uBase The base of the representation used. 628 * If the function will look for known prefixes before defaulting to 10.628 * If 0 the function will look for known prefixes before defaulting to 10. 629 629 * @param pu64 Where to store the converted number. (optional) 630 630 */ … … 645 645 * 646 646 * @returns iprt status code. 647 * Warnings are used to indicate conver tion problems.647 * Warnings are used to indicate conversion problems. 648 648 * @param pszValue Pointer to the string value. 649 649 * @param ppszNext Where to store the pointer to the first char following the number. (Optional) 650 650 * @param uBase The base of the representation used. 651 * If the function will look for known prefixes before defaulting to 10.651 * If 0 the function will look for known prefixes before defaulting to 10. 652 652 * @param pu32 Where to store the converted number. (optional) 653 653 */ … … 668 668 * 669 669 * @returns iprt status code. 670 * Warnings are used to indicate conver tion problems.670 * Warnings are used to indicate conversion problems. 671 671 * @param pszValue Pointer to the string value. 672 672 * @param ppszNext Where to store the pointer to the first char following the number. (Optional) 673 673 * @param uBase The base of the representation used. 674 * If the function will look for known prefixes before defaulting to 10.674 * If 0 the function will look for known prefixes before defaulting to 10. 675 675 * @param pu16 Where to store the converted number. (optional) 676 676 */ … … 691 691 * 692 692 * @returns iprt status code. 693 * Warnings are used to indicate conver tion problems.693 * Warnings are used to indicate conversion problems. 694 694 * @param pszValue Pointer to the string value. 695 695 * @param ppszNext Where to store the pointer to the first char following the number. (Optional) 696 696 * @param uBase The base of the representation used. 697 * If the function will look for known prefixes before defaulting to 10.697 * If 0 the function will look for known prefixes before defaulting to 10. 698 698 * @param pu8 Where to store the converted number. (optional) 699 699 */ … … 714 714 * 715 715 * @returns iprt status code. 716 * Warnings are used to indicate conver tion problems.716 * Warnings are used to indicate conversion problems. 717 717 * @param pszValue Pointer to the string value. 718 718 * @param ppszNext Where to store the pointer to the first char following the number. (Optional) 719 719 * @param uBase The base of the representation used. 720 * If the function will look for known prefixes before defaulting to 10.720 * If 0 the function will look for known prefixes before defaulting to 10. 721 721 * @param pi64 Where to store the converted number. (optional) 722 722 */ … … 737 737 * 738 738 * @returns iprt status code. 739 * Warnings are used to indicate conver tion problems.739 * Warnings are used to indicate conversion problems. 740 740 * @param pszValue Pointer to the string value. 741 741 * @param ppszNext Where to store the pointer to the first char following the number. (Optional) 742 742 * @param uBase The base of the representation used. 743 * If the function will look for known prefixes before defaulting to 10.743 * If 0 the function will look for known prefixes before defaulting to 10. 744 744 * @param pi32 Where to store the converted number. (optional) 745 745 */ … … 760 760 * 761 761 * @returns iprt status code. 762 * Warnings are used to indicate conver tion problems.762 * Warnings are used to indicate conversion problems. 763 763 * @param pszValue Pointer to the string value. 764 764 * @param ppszNext Where to store the pointer to the first char following the number. (Optional) 765 765 * @param uBase The base of the representation used. 766 * If the function will look for known prefixes before defaulting to 10.766 * If 0 the function will look for known prefixes before defaulting to 10. 767 767 * @param pi16 Where to store the converted number. (optional) 768 768 */ … … 783 783 * 784 784 * @returns iprt status code. 785 * Warnings are used to indicate conver tion problems.785 * Warnings are used to indicate conversion problems. 786 786 * @param pszValue Pointer to the string value. 787 787 * @param ppszNext Where to store the pointer to the first char following the number. (Optional) 788 788 * @param uBase The base of the representation used. 789 * If the function will look for known prefixes before defaulting to 10.789 * If 0 the function will look for known prefixes before defaulting to 10. 790 790 * @param pi8 Where to store the converted number. (optional) 791 791 */
Note:
See TracChangeset
for help on using the changeset viewer.