14 lines
193 B
C
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
|