summaryrefslogtreecommitdiff
path: root/userland/libc/stdio/ungetc.c
blob: 8d649bc877025bf413c45f26684f586bef9d0a6c (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>

int ungetc(int c, FILE *stream) {
  if (stream->has_buffered_char)
    return EOF;
  stream->buffered_char = c;
  stream->has_buffered_char = 1;
  return c;
}