Skip to content

Instantly share code, notes, and snippets.

@sw17ch
Created February 15, 2012 14:27
Show Gist options
  • Save sw17ch/1836130 to your computer and use it in GitHub Desktop.
Save sw17ch/1836130 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include "common.h"
#include "interface.h"
void initialize(void)
{
common_initialize();
puts("Initialize A\n");
}
void do_stuff(void)
{
common_do_stuff();
puts("Do Stuff A\n");
}
void cleanup(void)
{
common_cleanup();
puts("Cleanup A\n");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment