aboutsummaryrefslogtreecommitdiff
path: root/src/misc/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/misc/types.h')
-rw-r--r--src/misc/types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/misc/types.h b/src/misc/types.h
index ed9cd18..4bc2114 100644
--- a/src/misc/types.h
+++ b/src/misc/types.h
@@ -15,11 +15,13 @@
/**
* @brief
* @param bits
+ * @param sign
* @param bitlen
* @param allocated
*/
typedef struct {
unsigned char *bits;
+ bool sign;
size_t bitlen;
size_t allocated;
} bits_t;