tigetstr函式返回terminfo中的字元串功能標誌的值。失敗時(例如某個功能標誌不存在),tigetnum函式將返回(char *)-1。
基本介紹
- 外文名:tigetstr
- 頭檔案:#include<term.h>
- 函式原型:char *tigetstr(char *capname)
- 說明:返回terminfo字元串功能標誌的值
頭檔案,函式原型,範例,
頭檔案
#include<term.h>
函式原型
char *tigetstr(char *capname);
範例
#include <stdio.h>
#include <term.h>
#include <ncurses.h>
#include<stdlib.h>
int main()
{
char *str;
setupterm(NULL, fileno(stdout), (int *)0);
str = tigetstr("acsc");
printf("This terminal acsc value is %s\n", str);
exit(0);
}
[root@localhost chapter05]#gcc -o setupterm setupterm.c -lcurses
[root@localhost chapter05]# ./setupterm
This terminal acsc value is ``aaffggiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~