Adding some TODO notes

modified:   src/nms.c
This commit is contained in:
Brian Barto 2016-04-10 18:43:36 -04:00
parent 008f93c298
commit bf6db66729
1 changed files with 4 additions and 0 deletions

View File

@ -42,6 +42,8 @@ int main(void) {
// Seed my random number generator with the current time
srand(time(NULL));
// TODO: what is the data piped is greater than the size of the terminal window?
// Geting input
while ((c = getchar()) != EOF) {
if (c == NEWLINE) {
@ -80,6 +82,8 @@ int main(void) {
clearTermWindow(termSizeRows, termSizeCols);
// TODO: Data should initially 'type' itself on to the screen
// TODO: pause with getchar() - something about the input stream being redirected
// to a file is causing getchar() to immediately return here.