abouttreesummaryrefslogcommitdiff
path: root/src/fixedbuffer.h
diff options
context:
space:
mode:
authorPatrick2023-06-19 21:21:16 +0200
committerPatrick2023-06-19 21:21:16 +0200
commitad9d01050b7b6d592a83ce14eeef7068bd981028 (patch)
treef6263c85f4c9905bccb1887e50d2777c61b24405 /src/fixedbuffer.h
parentd382d193cb2d550cc769afa76e55823865a39023 (diff)
downloadmatrix_esp_thesis-ad9d01050b7b6d592a83ce14eeef7068bd981028.tar.gz
matrix_esp_thesis-ad9d01050b7b6d592a83ce14eeef7068bd981028.zip
olm session management
Diffstat (limited to 'src/fixedbuffer.h')
-rw-r--r--src/fixedbuffer.h19
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