Search:

Type: Posts; User: zyd

Search: Search took 0.01 seconds.

  1. Replies
    7
    Views
    2,467

    i know how to use ncurses but i don't see much...

    i know how to use ncurses but i don't see much use for the ncurses functionality in my project. just want to receive and process especial and control keys to perform some simple tasks not graphical...
  2. Replies
    7
    Views
    2,467

    ok. my fault, i hadn'r read your post. now i see

    ok. my fault, i hadn'r read your post. now i see
  3. Replies
    7
    Views
    2,467

    there is a way to make a "getch" function in...

    there is a way to make a "getch" function in linux, i use something like this.


    int getch() {
    int c;
    system(stty -echo);
    c = getchar();
    system(stty echo);
    return c;
    }
  4. Replies
    7
    Views
    2,467

    special function detection

    Hi. i need to do a console aplication in c that uses special function keys. But it seems that keys like (ctrl, alt, etc) are not being passed to the app. and the special function keys just write...
Results 1 to 4 of 4