_cputs, _cputws
将字符串到控件中。
重要
此 API 不能在 Windows 运行时执行的应用程序。有关更多信息,请参见 CRT 函数不支持与 /ZW。
int _cputs( const char *str ); int _cputws( const wchar_t *str );
参数
- str
输出字符串。
返回值
如果成功,_cputs 返回 0。 如果函数运行失败,将返回一个非零值。
备注
_cputs 功能编写指向由 str 直接对控件中的 null 终止的字符串。 支持返回换行符 (CR-LF) 组合不会自动追加到该字符串。
此功能验证其参数。 如果 str 是 空,无效参数调用处理程序,如 参数验证所述。 如果执行允许继续,errno 设置为 EINVAL,而 -1 返回。
一般文本例程映射
Tchar.h 实例 |
未定义的_UNICODE 和_MBCS |
定义的_MBCS |
定义的_UNICODE |
---|---|---|---|
_cputts |
_cputs |
_cputs |
_cputws |
要求
实例 |
必需的标头 |
选项标头 |
---|---|---|
_cputs |
<conio.h> |
<errno.h> |
_cputws |
<conio.h> |
<errno.h> |
有关更多兼容性信息,请参见 兼容性。
库
C 运行库的所有版本。
示例
// crt_cputs.c
// compile with: /c
// This program first displays a string to the console.
#include <conio.h>
#include <errno.h>
void print_to_console(char* buffer)
{
int retval;
retval = _cputs( buffer );
if (retval)
{
if (errno == EINVAL)
{
_cputs( "Invalid buffer in print_to_console.\r\n");
}
else
_cputs( "Unexpected error in print_to_console.\r\n");
}
}
void wprint_to_console(wchar_t* wbuffer)
{
int retval;
retval = _cputws( wbuffer );
if (retval)
{
if (errno == EINVAL)
{
_cputws( L"Invalid buffer in wprint_to_console.\r\n");
}
else
_cputws( L"Unexpected error in wprint_to_console.\r\n");
}
}
int main()
{
// String to print at console.
// Notice the \r (return) character.
char* buffer = "Hello world (courtesy of _cputs)!\r\n";
wchar_t *wbuffer = L"Hello world (courtesy of _cputws)!\r\n";
print_to_console(buffer);
wprint_to_console( wbuffer );
}
Output
Hello world (courtesy of _cputs)!
Hello world (courtesy of _cputws)!