Changeset 19384 in vbox
- Timestamp:
- May 5, 2009 3:24:54 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/string.cpp
r18096 r19384 47 47 * NULL is accepted. 48 48 */ 49 RT R3DECL(void) RTStrFree(char *pszString)49 RTDECL(void) RTStrFree(char *pszString) 50 50 { 51 51 if (pszString) … … 60 60 * @param pszString UTF-8 string to duplicate. 61 61 */ 62 RT R3DECL(char *) RTStrDup(const char *pszString)62 RTDECL(char *) RTStrDup(const char *pszString) 63 63 { 64 64 Assert(VALID_PTR(pszString)); … … 79 79 * @param pszString UTF-8 string to duplicate. 80 80 */ 81 RT R3DECL(int) RTStrDupEx(char **ppszString, const char *pszString)81 RTDECL(int) RTStrDupEx(char **ppszString, const char *pszString) 82 82 { 83 83 Assert(VALID_PTR(ppszString));
Note:
See TracChangeset
for help on using the changeset viewer.