Changeset 56980 in vbox for trunk/include/iprt
- Timestamp:
- Jul 18, 2015 6:59:10 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/string.h
r56919 r56980 2040 2040 * @param ... The format argument. 2041 2041 */ 2042 DECLINLINE(int) RTStrAPrintf(char **ppszBuffer, const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(2, 3) 2042 DECLINLINE(int) RT_IPRT_FORMAT_ATTR(2, 3) 2043 RTStrAPrintf(char **ppszBuffer, const char *pszFormat, ...) 2043 2044 { 2044 2045 int cbRet; … … 2063 2064 * @param ... The format argument. 2064 2065 */ 2065 DECLINLINE(int) RTStrAPrintfTag(char **ppszBuffer, const char *pszTag, const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(3, 4) 2066 DECLINLINE(int) RT_IPRT_FORMAT_ATTR(3, 4) 2067 RTStrAPrintfTag(char **ppszBuffer, const char *pszTag, const char *pszFormat, ...) 2066 2068 { 2067 2069 int cbRet; … … 2102 2104 * @param ... The format argument. 2103 2105 */ 2104 DECLINLINE(char *) RTStrAPrintf2(const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(1, 2) 2106 DECLINLINE(char *) RT_IPRT_FORMAT_ATTR(1, 2) 2107 RTStrAPrintf2(const char *pszFormat, ...) 2105 2108 { 2106 2109 char *pszRet; … … 2121 2124 * @param ... The format argument. 2122 2125 */ 2123 DECLINLINE(char *) RTStrAPrintf2Tag(const char *pszTag, const char *pszFormat, ...) RT_IPRT_FORMAT_ATTR(2, 3) 2126 DECLINLINE(char *) RT_IPRT_FORMAT_ATTR(2, 3) 2127 RTStrAPrintf2Tag(const char *pszTag, const char *pszFormat, ...) 2124 2128 { 2125 2129 char *pszRet;
Note:
See TracChangeset
for help on using the changeset viewer.