- or download this
int mult (int x, int y);
void speak (const char* str);
unsigned char* arr ();
- or download this
#include <stdio.h>
#include <stdlib.h>
...
return list;
}
- or download this
#include <stdio.h>
#include "xswrap.h"
...
return 0;
}
- or download this
#!/bin/sh
gcc -c -fPIC xswrap.c
gcc -shared -fPIC -Wl,-soname,libxswrap.so -o libxswrap.so xswrap.o -l
+c
sudo cp libxswrap.so /usr/lib
sudo cp xswrap.h /usr/local/include
- or download this
gcc -o test main.c -lxswrap
- or download this
./test