use case diagram

This commit is contained in:
Debucquoy
2023-11-17 16:10:39 +01:00
parent 3b2f4c84d7
commit c4e193e45f
7 changed files with 178 additions and 2 deletions

15
bac2/os/chap3/mergeSort.h Normal file
View File

@ -0,0 +1,15 @@
#pragma once
typedef unsigned int index;
typedef unsigned int length;
typedef struct merge_args{
int* array;
index start;
index final;
} margs_t;
void merge(int array[], index start, index middle, index final);
/* void merge_sort(int array [], index start , index final ); */
void* merge_sort(void*);