Skip to content
Snippets Groups Projects
Forked from GOSSA JULIEN / P4z
5 commits behind, 69 commits ahead of the upstream repository.
triInsertion.h 367 B
#ifndef triInsertion_h
#define triInsertion_h

#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>
#include <string.h>

#include "../Lib/utils.h"

size_t triInsertion(long* A, size_t n);

void triInsertionVerbose(long* A, size_t n, struct data* d);

#endif