static struct fuse_oprations hello_oper = {
.getattr = hello_getattr,
.readdir = hello_readdir,
.open = hello_open,
.read = hello_read,
};
이 C 구문을 잘 이해하지 못합니다. 구문 이름을 모르므로 검색 할 수도 없습니다. 그게 뭐야?도트 (.)는 구조체 초기화 프로그램에서 무엇을 의미합니까?
구조체 초기화 프로그램처럼 보입니다. – Mysticial
C99에서 표준화되었으므로 (실제로) 오래된 컴파일러가 있으면 작동하지 않을 것입니다. –
마지막으로 다음 링크를 찾았습니다. http://stackoverflow.com/questions/330793/how-to-initialize-a-struct-in-ansi-c – Mysticial