diff options
Diffstat (limited to 'src/fixedbuffer.h')
| -rw-r--r-- | src/fixedbuffer.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/fixedbuffer.h b/src/fixedbuffer.h deleted file mode 100644 index d8055cb..0000000 --- a/src/fixedbuffer.h +++ /dev/null @@ -1,19 +0,0 @@ -#ifndef FIXEDBUFFER__H
-#define FIXEDBUFFER__H
-
-#include <stdbool.h>
-
-typedef struct FixedBuffer {
- char * ptr;
- int cap;
- int len;
-} FixedBuffer;
-
-FixedBuffer
-FixedBuf(const char * str);
-
-bool
-FixedBufferToInt(FixedBuffer fb, int * outInt);
-
-
-#endif
\ No newline at end of file |
