MSUStudentWork/count_func.h
2024-09-18 09:54:54 +03:00

14 lines
193 B
C

#ifndef COUNT_FUNC
#define COUNT_FUNC
#include <stdio.h>
#define NUMBERS {'1', '2', '3', '4', '5'}
#define IN 1
#define OUT 0
int locatedIn(char symb);
int countWords(FILE * file);
#endif