/cython_examples

Simple example for using Cython / Python / C to call a C swap function from Python. Passing by reference

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

cython_examples

Simple examples for using Cython / Python / C to call a C functions from Python. Passing by reference.

Examples so far include:

  • swapping two integer values
  • sorting a list of integers

Based off of this "Hello World" example: https://github.com/stavshamir/cython-c-wrapper

To build: cd lib; make; cd -; make