Обновить cv1/program.c
This commit is contained in:
parent
fb4edab25d
commit
caa09c8456
@ -52,7 +52,8 @@ int main() {
|
||||
int matches = 0;
|
||||
for (int i = 0; i < count; i++) {
|
||||
char decoded_name[MAX_NAME_LEN];
|
||||
strcpy(decoded_name, dishes[i][0]);
|
||||
strncpy(decoded_name, dishes[i][0], MAX_NAME_LEN - 1);
|
||||
decoded_name[MAX_NAME_LEN - 1] = '\0';
|
||||
|
||||
decodovane_slovo(decoded_name);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user