Skip to content

Instantly share code, notes, and snippets.

View justinian's full-sized avatar
🦇
What a horrible night to have a curse.

Justin Miller justinian

🦇
What a horrible night to have a curse.
View GitHub Profile
@justinian
justinian / pyrunner.c
Created May 14, 2014 19:53
Simple C app to run a python file
#include <stdio.h>
#include <stdlib.h>
#include <Python.h>
#ifndef PYTHON_FILE
#error "Please define PYTHON_FILE."
#endif
int main(int argc, char **argv)
{