This commit is contained in:
Andrii Hermaniuk 2022-03-27 19:50:02 +02:00
parent 83797604ff
commit 56dd2d27d1

View File

@ -23,17 +23,23 @@ int main(){
} }
Dnes_Datum[id]='\0'; Dnes_Datum[id]='\0';
char *start=Dnes_Datum, *end=NULL;
time_t t=time(NULL);
for(int i=0;i<strlen(Dnes_Datum);i++){ for(int i=0;i<strlen(Dnes_Datum);i++){
if((Dnes_Datum[i]>='0'&&Dnes_Datum[i]<='9')||Dnes_Datum[i]==' '||Dnes_Datum[i]=='\n'); if((Dnes_Datum[i]>='0'&&Dnes_Datum[i]<='9')||Dnes_Datum[i]==' '||Dnes_Datum[i]=='\n');
else { else {
printf("Neplatny datum.\n"); printf("Neplatny datum.\n");
return EXIT_SUCCESS; while(Dnes_Datum[i]!='\n'){
i++;
}
i++;
counter--;
start+=i;
} }
} }
char *start=Dnes_Datum, *end=NULL;
time_t t=time(NULL);
for(int idx=0;idx<counter;idx++){ for(int idx=0;idx<counter;idx++){
struct tm *D_D; struct tm *D_D;