Files
T2-start-2025/C/t-oer-prc2-cbdb-main/development-setup/startingProject/shared/calculations.h
Rens Pastoor 11b391b8a1 sync
2025-05-27 22:41:46 +02:00

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