test
This commit is contained in:
parent
6d52628c9b
commit
1499a6d5d4
@ -75,13 +75,13 @@ void skontrolujZatvorky(const char *kod) {
|
||||
vloz(&z, aktualny);
|
||||
} else if (aktualny == '}' || aktualny == ']' || aktualny == '>' || aktualny == ')') {
|
||||
if (jePrazdny(&z)) {
|
||||
printf("Unexpected closing bracket '%c' in %d\n", aktualny, pozicia);
|
||||
printf("Unexpected closing bracket %c in %d\n", aktualny, pozicia);
|
||||
return;
|
||||
}
|
||||
|
||||
char poslednaOtvaracia = vyber(&z);
|
||||
if (!suZosuladene(poslednaOtvaracia, aktualny)) {
|
||||
printf("Crossed bracket '%c' at position %d, expected '%c'\n",
|
||||
printf("Crossed bracket %c at position %d, expected '%c'\n",
|
||||
aktualny, pozicia,
|
||||
(poslednaOtvaracia == '{') ? '}' :
|
||||
(poslednaOtvaracia == '[') ? ']' :
|
||||
@ -93,7 +93,7 @@ void skontrolujZatvorky(const char *kod) {
|
||||
|
||||
if (!jePrazdny(&z)) {
|
||||
char nezodpovedajuca = vyber(&z);
|
||||
printf("Chýbajúce zatváracie zátvorky pre nezodpovedajúcu: %c\n",
|
||||
printf("Missing closing brackets: %c\n",
|
||||
(nezodpovedajuca == '{') ? '}' :
|
||||
(nezodpovedajuca == '[') ? ']' :
|
||||
(nezodpovedajuca == '<') ? '>' : ')');
|
||||
|
Loading…
Reference in New Issue
Block a user