ceesort/src/bubble.h

13 lines
241 B
C

/*
* Filename: bubble.h
* Author(s): Roland (r.weirhowell@gmail.com)
* Description: Header file for bubble.c
* License: MIT (https://spdx.org/licenses/MIT.html)
*/
#pragma once
#include <stddef.h>
void bubblesort(int* arr, size_t n);