Skip to content

Instantly share code, notes, and snippets.

View robgalvan's full-sized avatar

Rob robgalvan

View GitHub Profile
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdbool.h>
#include <stdint.h>
struct person {
int age;
char *name;
void (*func_ptr)(struct person*);