2011-11-05 53 views
0
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 謝謝!語言C:布爾功能與錯誤:期望'',',',';','asm'或'__attribute__''isThereSpace'前

+0

解決了,C中沒有bool函數吧? 只有0和1,0表示爲false,1表示爲真。 謝謝:) – TiagoM

+0

如果你包含'stdbool.h',C99 **會有'bool'。 –

回答

0

如果這是嚴格的C,則不存在'bool'關鍵字。

相關問題