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