Changeset 24427 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Nov 6, 2009 8:52:12 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/straprintf.cpp
r21337 r24427 194 194 RT_EXPORT_SYMBOL(RTStrAPrintf); 195 195 196 197 RTDECL(char *) RTStrAPrintf2V(const char *pszFormat, va_list args) 198 { 199 char *pszBuffer; 200 RTStrAPrintfV(&pszBuffer, pszFormat, args); 201 return pszBuffer; 202 } 203 RT_EXPORT_SYMBOL(RTStrAPrintf2V); 204 205 206 RTDECL(char *) RTStrAPrintf2(const char *pszFormat, ...) 207 { 208 va_list va; 209 char *pszBuffer; 210 211 va_start(va, pszFormat); 212 RTStrAPrintfV(&pszBuffer, pszFormat, va); 213 va_end(va); 214 215 return pszBuffer; 216 } 217 RT_EXPORT_SYMBOL(RTStrAPrintf2); 218
Note:
See TracChangeset
for help on using the changeset viewer.