From cbe48ba34f0c08b9f03d011a34e3c4015dc09cce Mon Sep 17 00:00:00 2001 From: paulusja Date: Thu, 18 Jun 2026 09:23:11 +0200 Subject: [PATCH] Use unsigned. --- 09/sortierung/sortierung.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/09/sortierung/sortierung.h b/09/sortierung/sortierung.h index ba4600a..398ebbf 100644 --- a/09/sortierung/sortierung.h +++ b/09/sortierung/sortierung.h @@ -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 \ No newline at end of file