--- /dev/null
+#ifndef FIXEDBUFFER__H\r
+#define FIXEDBUFFER__H\r
+\r
+#include <stdbool.h>\r
+\r
+typedef struct FixedBuffer {\r
+ char * ptr;\r
+ int cap;\r
+ int len;\r
+} FixedBuffer;\r
+\r
+FixedBuffer\r
+FixedBuf(const char * str);\r
+\r
+bool\r
+FixedBufferToInt(FixedBuffer fb, int * outInt);\r
+\r
+\r
+#endif
\ No newline at end of file