Changeset 96128 in vbox for trunk/include/iprt/nocrt
- Timestamp:
- Aug 9, 2022 10:28:07 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/nocrt/stdio.h
r96091 r96128 97 97 int RT_NOCRT(remove)(const char *pszFilename); 98 98 int RT_NOCRT(sscanf)(const char *pszString, const char *pszFormat, ...); 99 int RT_NOCRT(vsscanf)(const char *pszString, const char *pszFormat, va_list); 99 100 100 101 # ifndef RT_NOCRT_EOF /* also in string */ … … 135 136 int RT_NOCRT(_remove)(const char *pszFilename); 136 137 int RT_NOCRT(_sscanf)(const char *pszString, const char *pszFormat, ...); 138 int RT_NOCRT(_vsscanf)(const char *pszString, const char *pszFormat, va_list); 137 139 138 140 # define _IONBF (1) /**< No buffering. */ … … 169 171 # define remove RT_NOCRT(remove) 170 172 # define sscanf RT_NOCRT(sscanf) 173 # define vsscanf RT_NOCRT(vsscanf) 171 174 172 175 … … 199 202 # define _remove RT_NOCRT(remove) 200 203 # define _sscanf RT_NOCRT(_sscanf) 204 # define _vsscanf RT_NOCRT(_vsscanf) 201 205 # endif 202 206
Note:
See TracChangeset
for help on using the changeset viewer.