/* * 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 void bubblesort(int* arr, size_t n);