From 88a52f07f1c71d1fc993a83188ed928c79e1bb99 Mon Sep 17 00:00:00 2001 From: Marat Izmailov Date: Wed, 2 Oct 2024 14:12:41 +0000 Subject: [PATCH] Update cv1/program.c --- cv1/program.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cv1/program.c b/cv1/program.c index c5b5d49..0319b93 100644 --- a/cv1/program.c +++ b/cv1/program.c @@ -45,7 +45,7 @@ int read_pizza(struct pizza* item) { item->prize = strtof(line, NULL); return (item->prize > 0) ? 1 : 0; - +} int find_string(const char* heap, const char* needle) { char normalized_heap[LINESIZE]; char normalized_needle[LINESIZE];