This commit is contained in:
Rens Pastoor
2025-05-27 22:41:46 +02:00
parent d141296aea
commit 11b391b8a1
416 changed files with 25232 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#include "calculations.h"
#include <stddef.h>
int swap(int* getal1, int* getal2)
{
if(getal1 == NULL || getal2==NULL)
{
return -1;
}
//TODO insert code here
return -1;
}

View File

@@ -0,0 +1,16 @@
#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