homework/cpp/myfunc.h

14 lines
163 B
C
Raw Normal View History

2024-05-22 17:33:42 +00:00
#ifndef myfunc_H
#define myfunc_H
#include <stdint.h>
2024-05-26 07:41:50 +00:00
struct model {
char * ptr;
uint32_t len ;
};
2024-05-22 17:33:42 +00:00
2024-05-26 15:19:37 +00:00
void bubbleSort(model arr[], int n);
2024-05-22 17:33:42 +00:00
#endif