- Timestamp:
- Aug 25, 2010 10:06:10 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/string.h
r31843 r31950 1630 1630 * String printf. 1631 1631 * 1632 * @returns The length of the returned string (in pszBuffer). 1632 * @returns The length of the returned string (in pszBuffer) excluding the 1633 * terminator. 1633 1634 * @param pszBuffer Output buffer. 1634 1635 * @param cchBuffer Size of the output buffer. … … 1641 1642 * String printf. 1642 1643 * 1643 * @returns The length of the returned string (in pszBuffer). 1644 * @returns The length of the returned string (in pszBuffer) excluding the 1645 * terminator. 1644 1646 * @param pszBuffer Output buffer. 1645 1647 * @param cchBuffer Size of the output buffer. … … 1653 1655 * String printf with custom formatting. 1654 1656 * 1655 * @returns The length of the returned string (in pszBuffer). 1657 * @returns The length of the returned string (in pszBuffer) excluding the 1658 * terminator. 1656 1659 * @param pfnFormat Pointer to handler function for the custom formats. 1657 1660 * @param pvArg Argument to the pfnFormat function. … … 1666 1669 * String printf with custom formatting. 1667 1670 * 1668 * @returns The length of the returned string (in pszBuffer). 1671 * @returns The length of the returned string (in pszBuffer) excluding the 1672 * terminator. 1669 1673 * @param pfnFormat Pointer to handler function for the custom formats. 1670 1674 * @param pvArg Argument to the pfnFormat function. … … 1680 1684 * Allocating string printf (default tag). 1681 1685 * 1682 * @returns The length of the string in the returned *ppszBuffer. 1686 * @returns The length of the string in the returned *ppszBuffer excluding the 1687 * terminator. 1683 1688 * @returns -1 on failure. 1684 1689 * @param ppszBuffer Where to store the pointer to the allocated output buffer. … … 1693 1698 * Allocating string printf (custom tag). 1694 1699 * 1695 * @returns The length of the string in the returned *ppszBuffer. 1700 * @returns The length of the string in the returned *ppszBuffer excluding the 1701 * terminator. 1696 1702 * @returns -1 on failure. 1697 1703 * @param ppszBuffer Where to store the pointer to the allocated output buffer. … … 1707 1713 * Allocating string printf. 1708 1714 * 1709 * @returns The length of the string in the returned *ppszBuffer. 1715 * @returns The length of the string in the returned *ppszBuffer excluding the 1716 * terminator. 1710 1717 * @returns -1 on failure. 1711 1718 * @param ppszBuffer Where to store the pointer to the allocated output buffer. … … 1728 1735 * Allocating string printf (custom tag). 1729 1736 * 1730 * @returns The length of the string in the returned *ppszBuffer. 1737 * @returns The length of the string in the returned *ppszBuffer excluding the 1738 * terminator. 1731 1739 * @returns -1 on failure. 1732 1740 * @param ppszBuffer Where to store the pointer to the allocated output buffer.
Note:
See TracChangeset
for help on using the changeset viewer.