IZP/Cviko4_2/types.h
2024-10-10 17:13:14 +02:00

20 lines
353 B
C

/**
* Hlavičkový soubor types.h
*
* OBSAH V TOMTO SOUBROU NEUPRAVUJTE!
*/
#include <stdbool.h>
#ifndef TYPES_H
#define TYPES_H
// DEKLAROVANÉ HLAVIČKY FUNKCÍ NIJAK NEMĚŇTE
int get_max(int array[], int length);
int get_sum(int array[], int length);
bool values_are_smaller_than(int array1[], int array2[], int array_length);
#endif