bool isThereSpace (EvernotaStruct *nota){
bool y = false;
for(x = 0; x < NUMBER_STRUCTS; x++){
if(shmptr[x].time == 0){
strcpy(shmptr[x].nome_nota, nota.nome_nota);
strcpy(shmptr[x].text, nota.text);
strcpy(shmptr[x].autor, nota.autor);
shmptr[x].time = nota.time;
printf(">>Nota inserida com sucesso\n");
y = true;
}
}
return y;
}
Я получаю эту ошибку на консоли, я все делаю правильно, я думаю: s Спасибо!