Replacing octal notation with decimal

modified:   src/nms.c
This commit is contained in:
Brian Barto 2016-04-07 14:12:30 -04:00
parent 238c8095e2
commit 72bf59301a
1 changed files with 2 additions and 2 deletions

View File

@ -5,8 +5,8 @@
#include <ctype.h>
#include <stdbool.h>
#define SPACE 040
#define NEWLINE 012
#define SPACE 32
#define NEWLINE 10
int getTermSizeRows(void);
int getTermSizeCols(void);