/** * @file include/graphplot.h */ #pragma once #include <stddef.h> typedef struct { char **buf; size_t row; size_t col; } plotbuf_t; void initPlotCfg(); void plotexpr(char const *); void plotexprImplicit(char const *); void changePlotCfg(char const *restrict);