#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" void triInsertion(long* A, size_t n); void triInsertionVerbose(long* A, size_t n, struct data* d); #endif