RosettaCodeData/Task/Keyboard-input-Flush-the-keyboard-buffer/Nim/keyboard-input-flush-the-keyboard-buffer.nim
2016-12-05 23:44:36 +01:00

4 lines
149 B
Nim

const TCIFLUSH: cint = 0
proc tcflush(fd, queue_selector: cint): cint {.header: "termios.h".}
discard tcflush(cint(getFileHandle(stdin)), TCIFLUSH)