Skip to content

Instantly share code, notes, and snippets.

@c00kiemon5ter
Created May 28, 2011 18:22
Show Gist options
  • Save c00kiemon5ter/997097 to your computer and use it in GitHub Desktop.
Save c00kiemon5ter/997097 to your computer and use it in GitHub Desktop.
typedef struct f_decoder
{
int (*delete) (struct f_decoder *dec);
void *private;
} s_dec;
@c00kiemon5ter
Copy link
Author

eboyjr: declares delete as a pointer to a function that accepts struct f_decorder* as argument and returns an int

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment