Sha256: 701d057dec948b6dc593c48b44b94cf6ccbe850abf36204359e8a2946b850588
Contents?: true
Size: 487 Bytes
Versions: 8
Compression:
Stored size: 487 Bytes
Contents
/* Public Domain Curses */ #include "pdcwin.h" /* get the cursor size/shape */ int PDC_get_cursor_mode(void) { PDC_LOG(("PDC_get_cursor_mode() - called\n")); return SP->visibility; } /* return number of screen rows */ int PDC_get_rows(void) { extern int PDC_n_rows; PDC_LOG(("PDC_get_rows() - called\n")); return( PDC_n_rows); } int PDC_get_columns(void) { extern int PDC_n_cols; PDC_LOG(("PDC_get_columns() - called\n")); return( PDC_n_cols); }
Version data entries
8 entries across 8 versions & 1 rubygems