IZP/Cviko7_1/types.h
2024-11-21 17:14:54 +01:00

18 lines
345 B
C

/**
* Hlavičkový soubor types.h
*
* OBSAH V TOMTO SOUBROU NEUPRAVUJTE!
*/
#ifndef TYPES_H
#define TYPES_H
// DEKLAROVANÉ HLAVIČKY FUNKCÍ NIJAK NEMĚŇTE
void array_print(int array[], int size);
void array_multiply(int *array, int size, int multiplier);
int array_insert(int array[], int size, int value, int position);
#endif