A quick yes or no question, does nCurses recognize the /n and act accordingly?
Example:
move(0, 0);
do {
curChar = fgetc(highScores);
if (curChar == EOF) {
break;
}
else {
addch(curChar);
}
} while ((curChar = fgetc(highScores)) != EOF);
In the addch(curChar) part, if it comes across a newline signal, will it move the cursor to a new line, or do I have to do it manually?