頭檔案
#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
[397090770@localhost chapter05]# ./wyp
This terminal has boolean 0.