search for: strtok_s

Displaying 8 results from an estimated 8 matches for "strtok_s".

Did you mean: strtok_r
2011 Jan 26
1
[nut-commits] svn commit r2853 - in branches/windows_port: drivers include
...nclude/wincompat.h Wed Jan 26 15:16:09 > 2011 (r2853) > @@ -28,6 +28,7 @@ > #include "common.h" > > #define sleep(n) Sleep(1000 * n) > +#define strtok_r(a,b,c) strtok(a,b) > > /* Network compatibility */ You probably want to use > +#define strtok_r(a,b,c) strtok_s(a,b,c) here. I'm not sure that never tokenize multiple strings at the same time (in which case using strtok() would severely break). Best regards, Arjen -- Please keep list traffic on the list (off-list replies will be rejected)
2012 Sep 19
7
[LLVMdev] Handling of unsafe functions
...alternatives: Functions Windows Unix/Mac OS Memcpy memcpy_s - Sprint sprintf_s snprintf Sscanf scanf_s - _alloca _malloca - Strcat strcat_s strlcat Strcpy strcpy_s strlcpy Strtok strtok_s - The proposal is to add secure versions of these functions. These functions will be implemented in LLVM Support module and be used by all other LLVM modules. The interface of these methods will be platform independent while their implementation will be platform specific (like the Mute...
2012 Sep 19
0
[LLVMdev] Handling of unsafe functions
...; Memcpy memcpy_s - > > Sprint sprintf_s snprintf > > Sscanf scanf_s - > > _alloca _malloca - > > Strcat strcat_s strlcat > > Strcpy strcpy_s strlcpy > > Strtok strtok_s - > > > > The proposal is to add secure versions of these functions. These functions > will be implemented in LLVM Support module and be used by all other LLVM > modules. The interface of these methods will be platform independent while > their implementation will be...
2012 Sep 19
0
[LLVMdev] Handling of unsafe functions
...cure alternatives. > > Recommended alternatives: > > Functions Windows Unix/Mac OS > > Memcpy memcpy_s - > > Sprint sprintf_s snprintf > > Sscanf scanf_s - > > _alloca _malloca - > > Strcat strcat_s strlcat > > Strcpy strcpy_s strlcpy > > Strtok strtok_s - > > The proposal is to add secure versions of these functions. These > functions will be implemented in LLVM Support module and be used by all > other LLVM modules. The interface of these methods will be platform > independent while their implementation will be platform specific (l...
2012 Sep 20
1
[LLVMdev] Handling of unsafe functions
...; Memcpy memcpy_s - > > Sprint sprintf_s snprintf > > Sscanf scanf_s - > > _alloca _malloca - > > Strcat strcat_s strlcat > > Strcpy strcpy_s strlcpy > > Strtok strtok_s - > > > > The proposal is to add secure versions of these functions. These > functions will be implemented in LLVM Support module and be used by > all other LLVM modules. The interface of these methods will be > platform independent while their implementation will...
2016 Aug 19
0
Wine release 1.9.17
...tub. Benjamin Hodgetts (1): wined3d: Add Nvidia 1XXX range to detection list. Bernhard Übelacker (3): usp10/tests: Reserve for InClass a byte for every character in teststr. kernel32/tests: Convert fiber back to thread even when IsThreadAFiber is not available. msvcrt: Fix strtok_s and _mbstok_s for empty strings. Bruno Jesus (19): odbc32: Upgrade a WARN into ERR when the library is not found. dinput: Fix some debug output. dinput: Add DirectInput8 device type names to debug. dinput/tests: Improve controller debug information. dinput: Add suppor...
2010 Nov 12
0
Wine release 1.3.7
...m to the new macros for parameters validation. msvcrt: Use the new parameter checking macros for f(w)open_s functions. msvcrt: Use the parameter checking macros for strncpy_s. msvcrt: Use parameter validation macros for mcstowcs_s_l. msvcrt: Use parameter checking macros for strtok_s. msvcrt: Use parameter checking macros for string to number functions. msvcrt: Use parameter checking macros for wcsto{number} functions. msvcrt: Use parameter checking macros in wcstombs_s_l. msvcrt: Use parameter checking macros in vsn(w)printf_s_l. msvcrt: Implement...
2010 May 07
0
Wine release 1.1.44
...ed _recalloc implementation. msvcrt: Added btowc implementation. msvcrt: Change strtod_l implementation. msvcrt: Added wcstod_l implementation. msvcrt: Use wcstod_l/strtod_l in other functions that parses doubles. msvcrt: Fix debug message in scanf. msvcrt: Added strtok_s implementation. msvcrt: Added _mkgmtime implementation. msvcrt: Added _wcstoi64 and _wcstoui64 implementation. msvcrt: Added wcstombs_s implementation. urlmon: Fixed synchronous binding to file. msvcrt: Added _get_osplatform implementation. msvcrt: Added ___mb_cu...