tigetstr

tigetstr函式返回terminfo中的字元串功能標誌的值。失敗時(例如某個功能標誌不存在),tigetnum函式將返回(char *)-1。

頭檔案

#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{{||}}~~

相關詞條

相關搜尋

熱門詞條

聯絡我們