diff options
Diffstat (limited to 'draw.c')
-rw-r--r-- | draw.c | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -508,3 +508,12 @@ void redo_change(){ redraw(); } + +/** Comments **/ + +void get_comment(FILE *fc){ + char c; + redraw(); + while((c = fgetc(fc)) != EOF && c != '\n'); + mode = MOVE; +} |