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
commitbd29062df3c929ec338db7aa08363e3167a5429a (patch)
treebab01946f2153cdc269413638fa237740a933161 /include/types.h
parentee66c09220c652519db521327c503b71124fbf0f (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