GCS  0.2.3
gu_buf.h
1 /* Copyright (C) 2013 Codership Oy <info@codership.com> */
8 #ifndef _gu_buf_h_
9 #define _gu_buf_h_
10 
11 #include "gu_types.h"
12 
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16 
17 struct gu_buf
18 {
19  const void* ptr;
20  ssize_t size;
21 };
22 
23 #ifdef __cplusplus
24 }
25 #endif
26 
27 #endif /* _gu_buf_h_ */
Definition: gu_buf.h:17