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

15 lines
205 B
C

#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;
}