xref: /third_party/node/test/wasi/c/stdin.c (revision 1cb0ef41)
1#include <stdio.h>
2
3int main(void) {
4  char x[32];
5
6  if (fgets(x, sizeof x, stdin) == NULL) {
7    return ferror(stdin);
8  }
9  if (fputs(x, stdout) == EOF) {
10    return ferror(stdout);
11  }
12  return 0;
13}
14