#include <stdio.h>
int putc(int c, FILE *stream);
Partially implemented
IEEE Std 1003.1-2017
The putc()
function shall be equivalent to fputc()
, except that if it is implemented as a macro it may evaluate
stream more than once, so the argument should never be an expression with side effects.
Refer to fputc.
Refer to fputc.
Untested
None