[AUDIT]
[reactos.git] / reactos / lib / crt / conio / cputs.c
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS system libraries
4 * FILE: lib/msvcrt/conio/cputs.c
5 * PURPOSE: Writes a character to stdout
6 * PROGRAMER: Ariadne
7 * UPDATE HISTORY:
8 * 28/12/98: Created
9 */
10
11 #include <precomp.h>
12
13 /*
14 * @implemented
15 */
16 int _cputs(const char *_str)
17 {
18 int len = strlen(_str);
19 DWORD written = 0;
20 if (!WriteFile( fdinfo(stdout->_file)->hFile ,_str,len,&written,NULL))
21 return -1;
22 return 0;
23 }