| 90 #define UCX_VERSION (((UCX_VERSION_MAJOR)<<16)|UCX_VERSION_MINOR) |
90 #define UCX_VERSION (((UCX_VERSION_MAJOR)<<16)|UCX_VERSION_MINOR) |
| 91 |
91 |
| 92 #include <stdlib.h> |
92 #include <stdlib.h> |
| 93 #include <stddef.h> |
93 #include <stddef.h> |
| 94 #include <stdbool.h> |
94 #include <stdbool.h> |
| |
95 #include <stdint.h> |
| 95 |
96 |
| 96 /** |
97 /** |
| 97 * Function pointer compatible with fwrite-like functions. |
98 * Function pointer compatible with fwrite-like functions. |
| 98 */ |
99 */ |
| 99 typedef size_t (*cx_write_func)( |
100 typedef size_t (*cx_write_func)( |