tigetflag

頭檔案

#include<term.h>

函式原型

int tigetflag(char *capname);

說明

tigetflag函式返回terminfo中的布爾功能標誌的值。失敗時(例如某個功能標誌不存在),tigetflag函式將返回-1

範例

#include <stdio.h>
#include <term.h>
#include <ncurses.h>
#include<stdlib.h>
int main()
{
int xon;
setupterm(NULL, fileno(stdout), (int *)0);
xon = tigetflag("xon");
printf("This terminal has boolean %d\n", xon);
exit(0);
}
# gcc -o wyp wyp.c -lncurses
&#91;397090770@localhost chapter05&#93;# ./wyp
This terminal has boolean 0.

相關詞條

相關搜尋

熱門詞條

聯絡我們