Home
last modified time | relevance | path

Searched refs:_nextchar (Results 1 – 1 of 1) sorted by relevance

/hal_rpi_pico-latest/src/host/hardware_uart/
Duart.c66 static int _nextchar = EOF; variable
69 if (_nextchar == EOF) { in _peekchar()
70 _nextchar = getchar(); in _peekchar()
72 return _nextchar != EOF; in _peekchar()
123 char rc = (char) _nextchar; in uart_getc()
124 _nextchar = EOF; in uart_getc()