|
Project Information
Featured
Links
|
What it is: - A set of modules that provide an extremely thin binding for the curses library in D.
Please take a look at the project home page for more information. Or see the current status of the project by looking at the roadmap. Caveats: - D arrays != C arrays. If your program seg faults, it's probably related to an array issue. Make sure all your arrays (including strings) are null terminated, and make sure you are passing a pointer to the array data.
- ACS_ "constants". This can't be implemented as far as i can tell without adding a separate library to link, which i don't want to do. Instead of ACS_whatever use acs_map[ACS.whatever]
- D strings != C char or even const char.ptr. D strings are by default immutable char.ptr. D chars and strings may or may not be null terminated.
|