Curses Library 一些网上的资料

http://publib.boulder.ibm.com/infocenter/pseries/v5r3/index.jsp?topic=/com.ibm.aix.genprogc/doc/genprogc/understanding_terminals_wcurses.htm

 

http://tldp.org/HOWTO/NCURSES-Programming-HOWTO/

 

http://en.wikipedia.org/wiki/Curses_%28programming_library%29

 

某人的pdf 不错

http://heather.cs.ucdavis.edu/~matloff/UnixAndC/CLanguage/Curses.pdf

 

Structure of a Curses Program

In general, a curses program has the following progression:

  1. Start curses.
  2. Check for color support (optional).
  3. Start color (optional).
  4. Create one or more windows.
  5. Manipulate windows.
  6. Destroy one or more windows.
  7. Stop curses.

Some steps are optional, so your program does not have to follow this progression exactly.

 

 

你可能感兴趣的:(library)