ceesort/src/bubble.h

6 lines
72 B
C

#pragma once
#include <stddef.h>
void bubblesort(int* arr, size_t n);