Skip to content

Instantly share code, notes, and snippets.

@michael-iuzzolino
Last active March 10, 2019 03:25
Show Gist options
  • Save michael-iuzzolino/d5eb7b368c940bd9f27c6c2b9ae522e9 to your computer and use it in GitHub Desktop.
Save michael-iuzzolino/d5eb7b368c940bd9f27c6c2b9ae522e9 to your computer and use it in GitHub Desktop.
Basic C Library for ctypes example
#include <stdio.h>
void say_hello(int times)
{
for (int i = 0; i < times; ++i)
{
printf("%d. Hello, Python. I am C!\n", i+1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment