Use unsigned.

This commit is contained in:
Jan Paulus 2026-06-18 09:23:11 +02:00
parent 487f103de4
commit cbe48ba34f

View File

@ -2,8 +2,8 @@
#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);
void selectionsort(int array[], unsigned int anzahl);
void insertionsort(int array[], unsigned int anzahl);
void bubblesort(int array[], unsigned int anzahl);
#endif