Sha256: b6010c93a225aaf8d16401cd951365d944b2b76d02d7557ced260506ecfff7ba
Contents?: true
Size: 413 Bytes
Versions: 8
Compression:
Stored size: 413 Bytes
Contents
/* Public Domain Curses */ #include <curspriv.h> int PDC_get_cursor_mode(void) { PDC_LOG(("PDC_get_cursor_mode() - called\n")); return SP->visibility; } int PDC_get_columns(void) { extern int PDC_cols; PDC_LOG(("PDC_get_columns() - called\n")); return( PDC_cols); } int PDC_get_rows(void) { extern int PDC_rows; PDC_LOG(("PDC_get_rows() - called\n")); return( PDC_rows); }
Version data entries
8 entries across 8 versions & 1 rubygems