Files
LivePlotter/inc/util.hpp

15 lines
212 B
C++

#pragma once
#include <stdio.h>
template<class T> struct Array {
T* _data;
size_t len;
T& operator[](int i);
};
typedef unsigned int uint;
bool read_file(Array<char>* out, const char* filepath);