! Copyright (C) 2012 John Benediktsson ! See http://factorcode.org/license.txt for BSD license USING: accessors arrays classes.struct io.streams.c kernel math system terminal unix unix.ffi ; QUALIFIED-WITH: alien.c-types c IN: terminal.linux M: unix (terminal-size) stdout-handle fileno TIOCGWINSZ winsize [ ioctl ] keep swap 0 < [ drop 0 0 ] [ [ ws_col>> ] [ ws_row>> ] bi ] if ;