1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef GRAPH_H #define GRAPH_H #define ROWS_SPACING 5 #define COLS_SPACING 12 #include <stdio.h> #include <stdlib.h> #include <ncurses.h> #include <sys/ioctl.h> #include <unistd.h> #include "api.h" void graph_print(const double* points, struct tm* start_time); #endif