coblines

画面上の行数を返却します。

構文
#include "cobscreen.h"

int coblines (void);
パラメータ

なし

コメント

この関数は、画面の高さを行数で返却します。

同等の COBOL 構文
call "CBL_GET_SCR_SIZE" using ...

画面の高さを見つけ表示するには、

int depth = coblines();

printf("Depth of screen = %d\n", depth);