Initializacia

This commit is contained in:
Kozar 2024-10-02 17:03:28 +00:00
parent 127fb51225
commit 969442f6e7

View File

@ -67,6 +67,10 @@ int main() {
fgets(search, LINESIZE, stdin);
search[strcspn(search, "\n")] = '\0';
for (int i = 0; search[i]; i++) {
search[i] = tolower(search[i]);
}
printf("Zadaj jedalny listok:\n");
while (read_pizza(&menu[count])) {
count++;