19 lines
345 B
C
19 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
|