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

18 lines
249 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
bool is_alpha(char c);
bool is_name(char arr[]);
#endif