This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
include <stdlib.h> | |
#include <ncurses.h> | |
/* setting up typing function */ | |
char * nr_echo( int start_y, int start_x, int h, int w, int *out_count ){ | |
int ch, y, x, end_y, end_x, ch_count ; | |
int ch_count_in; | |
char *stored_line; | |
stored_line = malloc(100000); | |