#ifndef SORTIERUNG_H #define SORTIERUNG_H void tausche(int *zahl1, int *zahl2); void selectionsort(int array[], int anzahl); void insertionsort(int array[], int anzahl); void bubblesort(int array[], int anzahl); #endif