IZP/Cviko4_1/types.h

19 lines
249 B
C
Raw Normal View History

2024-10-10 17:13:14 +02:00
/**
* 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