Help for this page

Select Code to Download


  1. or download this
    int mult (int x, int y);
    void speak (const char* str);
    unsigned char* arr ();
    
  2. or download this
    #include <stdio.h>
    #include <stdlib.h>
    ...
    
        return list;
    }
    
  3. or download this
    #include <stdio.h>
    #include "xswrap.h"
    ...
    
        return 0;
    }
    
  4. 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
    
  5. or download this
    gcc -o test main.c -lxswrap
    
  6. or download this
    ./test