uni

University stuff
git clone git://git.christosmarg.xyz/uni-assignments.git
Log | Files | Refs | README | LICENSE

arrhandler.h (270B)


      1 #ifndef ARRHANDLER_H
      2 #define ARRHANDLER_H
      3 
      4 #include "fcombinations.h"
      5 
      6 int *fill_array(int, FILE *);
      7 bool exists_in_array(int *, int, int);
      8 
      9 void quicksort(int *, int, int);
     10 int partition(int *, int, int);
     11 void swap(int *, int *);
     12 
     13 int find_pos(int *, int, int);
     14 
     15 #endif