20 lines
353 B
C
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
|