9 lines
343 B
C
9 lines
343 B
C
#ifndef MERGESORT_H
|
|
#define MERGESORT_H
|
|
//=============================================================================
|
|
#include "geracao.h"
|
|
//=============================================================================
|
|
void mergesort(int *array, int n);
|
|
//=============================================================================
|
|
#endif
|