C-Playground/lib/grapher.h

10 lines
244 B
C

#ifndef GRAPHER_H
#define GRAPHER_H
#include "bmp.h"
#include <stdint.h>
void grapher_draw_line(const bitmap_file *bitmap_file_in, const int32_t x_origin_in, const int32_t y_origin_in, const int32_t x_end_in, const int32_t y_end_in);
#endif