mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 21:48:10 +00:00
24 lines
500 B
C
24 lines
500 B
C
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS system libraries
|
|
* FILE: lib/sdk/crt/conio/putch.c
|
|
* PURPOSE: Writes a character to stdout
|
|
* PROGRAMER: Ariadne
|
|
* UPDATE HISTORY:
|
|
* 28/12/98: Created
|
|
*/
|
|
|
|
#include <precomp.h>
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
int _putch(int c)
|
|
{
|
|
DWORD NumberOfCharsWritten;
|
|
|
|
if (WriteFile(GetStdHandle(STD_OUTPUT_HANDLE),&c,1,&NumberOfCharsWritten,NULL)) {
|
|
return -1;
|
|
}
|
|
return NumberOfCharsWritten;
|
|
}
|