16 lines
233 B
C
16 lines
233 B
C
#ifndef CALCULATIONS_H
|
|
#define CALCULATIONS_H
|
|
|
|
#include <stdint.h>
|
|
|
|
// return
|
|
// 0 : swap gelukt
|
|
//-1 : fout opgtreden
|
|
|
|
int swap(int* getal1, int* getal2);
|
|
|
|
// 0 : GELUKT
|
|
// -1 : er is iets mis gegaan
|
|
int sort (int array[]);
|
|
|
|
#endif |