/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* iter.hpp :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: aortigos # include template void iter(PTR *address, size_t const lenght, F func) { size_t i; i = 0; while (i < lenght) { func(address[i]); i++; } } #endif