Skip to content

Instantly share code, notes, and snippets.

@jserv
Created April 6, 2020 14:27
Show Gist options
  • Save jserv/21bd32e13ea4e1a171946b734da53a4b to your computer and use it in GitHub Desktop.
Save jserv/21bd32e13ea4e1a171946b734da53a4b to your computer and use it in GitHub Desktop.
#include <stdio.h>
static void test() { puts(__func__); }
int main() {
typedef void (*callback_t)(void);
callback_t cb = &test;
(*cb)();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment