vote up 2 vote down star
2

Trying to get getch() working to capture key press.

    #include <curses.h>
    ...
    ...
    WINDOW *w;
    char f;

   w = initscr();
   timeout(3000);
   f = getch();
   endwin();

is giving me following error:-

undefined reference to `wgetch'
undefined reference to `stdscr'
flag

1 Answer

vote up 6 vote down check

That's a linking error. Are you linking to the curses library correctly?

There are two steps involved in using a library in C.

  1. You #include the relevant header files from your source files. This is so your code knows what signatures of the library functions are. So you're doing this correctly.
  2. When compiling your code, you need to tell the linker to link to the relevant libraries, so it can find the definition of those functions. This is what you're not doing. Assuming you're using gcc then adding -lncurses to the compile line should do it. Here's an explanation of linking.
link|flag
1  
yes i have included curses.h and also ncurses.h – Alex Xander Oct 3 at 10:38
4  
link to curses using -lncurses option – aJ Oct 3 at 10:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.