StringCchGetsW function (strsafe.h)
Gets one line of text from stdin, up to and including the newline character ('\n'). The line of text is copied to the destination buffer, and the newline character is replaced with a null character. The size of the destination buffer is provided to the function to ensure that it does not write past the end of this buffer.
Syntax
STRSAFEAPI StringCchGetsW(
[out] STRSAFE_LPWSTR pszDest,
[in] size_t cchDest
);
Parameters
[out] pszDest
Type: LPTSTR
The destination buffer, which receives the copied characters.
[in] cchDest
Type: size_t
The size of the destination buffer, in characters. This value must be at least 2 for the function to succeed. The maximum number of characters allowed, including the terminating null character, is STRSAFE_MAX_CCH. If cchDest is too small to hold the full line of text, the data is truncated.
Return value
Type: HRESULT
This function can return one of the following values. It is strongly recommended that you use the SUCCEEDED and FAILED macros to test the return value of this function.
Return code | Description |
---|---|
|
Characters were read from stdin, were copied to the buffer at pszDest, and the buffer was null-terminated. |
|
Indicates an error or end-of-file condition. Use feof or ferror to determine which one has occurred. |
|
The value in cchDest is larger than the maximum allowed value. |
|
The value in cchDest is 1 or less. |
Note that this function returns an HRESULT value, unlike the functions that it replaces.
Remarks
StringCchGets provides additional processing for proper buffer handling in your code. Poor buffer handling is implicated in many security issues that involve buffer overruns. StringCchGets always null-terminates a nonzero-length destination buffer.
The value of pszDest should not be NULL. See StringCchGetsEx if you require the handling of null string pointer values.
StringCchGets can be used in its generic form, or in its more specific forms. The data type of the string determines the form of this function that you should use, as shown in the following table.
String Data Type | String Literal | Function |
---|---|---|
char | "string" | StringCchGetsA |
TCHAR | TEXT("string") | StringCchGets |
WCHAR | L"string" | StringCchGetsW |
Note
The strsafe.h header defines StringCchGets as an alias which automatically selects the ANSI or Unicode version of this function based on the definition of the UNICODE preprocessor constant. Mixing usage of the encoding-neutral alias with code that not encoding-neutral can lead to mismatches that result in compilation or runtime errors. For more information, see Conventions for Function Prototypes.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows XP with SP2 [desktop apps | UWP apps] |
Minimum supported server | Windows Server 2003 with SP1 [desktop apps | UWP apps] |
Target Platform | Windows |
Header | strsafe.h |
See also
Reference