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 }