This example implements a simple shared library in C.
This library called libfifthy
exposes a function called add_fifthy
which takes an array of integers and modify it in place by adding 50
to all elements.
Then there's some code in python which builds an array and invokes the add_fifthy
from the shared library and reads the altered array values.
Compile the shared lib with:
gcc -g -fPIC -Wall -Werror -Wextra -pedantic *.c -shared -o libfifthy.so
This will produce the file libfifthy.so
Now run the python script with:
python test.py
If all went OK, you should visualize something like the following output:
('Original array: ', [1, 2, 3, 4, 5])
('Array altered from shared lib: ', <__main__.c_int_Array_5 object at 0x10b8aa9e0>)
All values in altered array:
51
52
53
54
55