Update cv1/program.c

This commit is contained in:
Marat Izmailov 2024-10-02 14:12:41 +00:00
parent 73fde4acc6
commit 88a52f07f1

View File

@ -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];