#ifndef MAINAUX_H
#define MAINAUX_H

#include<windows.h>
#include<stdio.h>
#include<string.h>

// разделитель входений в строку по умолчанию - пробел

#ifndef STR_SEP
#define STR_SEP	' '
#endif

// конец строки по умолчанию - 0

#ifndef STR_EOL
#define STR_EOL	0
#endif

BOOL IsInString(char *,char *);

#endif