aboutsummaryrefslogtreecommitdiff
path: root/Project1/helper.h
blob: 7fb21596320ab12090d5b2ec6d0fe7cea17caff9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef HELPER
#define HELPER

#include <iostream>
#include <array>
#include <vector>
#include <list>

using std::array;
using std::vector;

constexpr int SIZE = 12000;

void Print(int(&cArray)[SIZE]);

void Print(const std::array<int, SIZE> &stdArray);

void Print(const std::vector<int>& myVector);

void Print(const std::list<int>& myList);

#endif HELPER