repo.or.cz
/
abook.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
use automake 1.11, autoconf 2.65
[abook.git]
/
abook_curses.h
blob
94e0012d807942f38781a848ab1e7383633f311f
1
#ifndef _ABOOK_CURSES_H
2
#define _ABOOK_CURSES_H
3
4
#include
"config.h"
5
6
#ifdef HAVE_NCURSES_H
7
# include <ncurses.h>
8
#else
9
# include <curses.h>
10
#endif
11
12
#ifndef getnstr
13
# define getnstr(s, n) wgetnstr(stdscr, s, n)
14
#endif
15
16
#endif