It would appear that the curses library is specific to the operating system. Given this, I would like to know:
- Can the curses library be used in a non-standard operating system (as in not Windows, Linux, Mac OS, so on...)?; and,
If the curses library is not limited to those operating systems, would I have to write my own implementation of the functions described in the library or could I simply call the functions in a similar fashion as in:
#include <stdio.h> ... printf("%s", "something");