Skip to content

Instantly share code, notes, and snippets.

@tbarusseau
Created February 22, 2016 15:43
Show Gist options
  • Save tbarusseau/df1d87439a0359cada17 to your computer and use it in GitHub Desktop.
Save tbarusseau/df1d87439a0359cada17 to your computer and use it in GitHub Desktop.
/* file.h: */
char thisIsAMethod(int arg1, char *arg2);
/* file.c: */
char thisIsAMethod(int arg1, char *arg2)
{
return arg2[arg1];
}
/* someOtherFile.c: */
#include "file.h"
/* CONGRATZ, you can now use thisIsAMethod! */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment