comparison include/types.h @ 1369:1a78ca089bd0

Expose buffer type for other C libraries; replace minusSeconds with addSeconds
author Adam Chlipala <adam@chlipala.net>
date Sun, 26 Dec 2010 15:52:56 -0500
parents b02cb9da5686
children 44a12a321150
comparison
equal deleted inserted replaced
1368:b2bc8bcd546f 1369:1a78ca089bd0
92 uw_periodic *periodics; // 0-terminated array 92 uw_periodic *periodics; // 0-terminated array
93 } uw_app; 93 } uw_app;
94 94
95 #define ERROR_BUF_LEN 1024 95 #define ERROR_BUF_LEN 1024
96 96
97 typedef struct {
98 size_t max;
99 char *start, *front, *back;
100 } uw_buffer;
101
97 #endif 102 #endif