0207-structcb.c - scc - simple c99 compiler
(HTM) git clone git://git.simple-cc.org/scc
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) LICENSE
---
0207-structcb.c (205B)
---
1 typedef int (cookie_seek_function_t)(void);
2
3 typedef struct _IO_cookie_io_functions_t {
4 cookie_seek_function_t *seek;
5 } cookie_io_functions_t;
6
7 cookie_seek_function_t seek;
8
9 int
10 main(void)
11 {
12 return 0;
13 }