Язык C: ФУНКЦИЯ BOOL с ошибкой: ожидается ‘=’, ‘,’, ‘;’, ‘asm’ или ‘__attribute__’ перед «isThereSpace» - PullRequest
0 голосов
/ 06 ноября 2011
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 Спасибо!

1 Ответ

0 голосов
/ 06 ноября 2011

Если это строгий C, ключевое слово 'bool' отсутствует.

...