ceesort/src/bubble.h

13 lines
241 B
C
Raw Normal View History

2022-05-26 13:34:12 +01:00
/*
* Filename: bubble.h
* Author(s): Roland (r.weirhowell@gmail.com)
* Description: Header file for bubble.c
* License: MIT (https://spdx.org/licenses/MIT.html)
*/
2022-04-01 10:34:34 +01:00
#pragma once
#include <stddef.h>
void bubblesort(int* arr, size_t n);