ceesort/src/bubble.h

6 lines
72 B
C
Raw Normal View History

2022-04-01 10:34:34 +01:00
#pragma once
#include <stddef.h>
void bubblesort(int* arr, size_t n);