From 16dd2264e848a00321ae4eb872a77b54ef2afccf Mon Sep 17 00:00:00 2001 From: Bohdan Yanchyk Date: Fri, 3 Apr 2020 00:30:36 +0000 Subject: [PATCH] =?UTF-8?q?Aktualizovat=20=E2=80=9Edu4/program.c=E2=80=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- du4/program.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/du4/program.c b/du4/program.c index 918eb39..1cf4302 100644 --- a/du4/program.c +++ b/du4/program.c @@ -61,7 +61,7 @@ int check(char *str){ if(str[i]=='='){ flag=1; } - if((str[i]>='a'&&str[i]<='z')||(str[i]>='A'&&str[i]<='Z')){ + if((str[i]>='a'&&str[i]<='z')||(str[i]>='A'&&str[i]<='Z')||str[i]==','){ return 0; } }