cours_progra/bac2/os/chap3/mergeSort.h

16 lines
308 B
C
Raw Normal View History

2023-11-17 16:10:39 +01:00
#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*);