summaryrefslogtreecommitdiff
path: root/include/types.h
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adam@chlipala.net>2010-12-26 15:52:56 -0500
committerGravatar Adam Chlipala <adam@chlipala.net>2010-12-26 15:52:56 -0500
commitbfbe3b9c6870d6a501816c080b52d9e0c922db6c (patch)
treebab01946f2153cdc269413638fa237740a933161 /include/types.h
parentbc7000ce141d30e4db4842edd8fa067ac1ec191d (diff)
Expose buffer type for other C libraries; replace minusSeconds with addSeconds
Diffstat (limited to 'include/types.h')
-rw-r--r--include/types.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/types.h b/include/types.h
index 37fcfb7f..ddc46b27 100644
--- a/include/types.h
+++ b/include/types.h
@@ -94,4 +94,9 @@ typedef struct {
#define ERROR_BUF_LEN 1024
+typedef struct {
+ size_t max;
+ char *start, *front, *back;
+} uw_buffer;
+
#endif