404 static struct file_operations input_fops = {
405 owner: THIS_MODULE,
406 open: input_open_file,
407 };
위에서 나온 owner: 의 콜론은 언제 쓰이는거죠?
file_operations 구조체중 open 에 해당하는 함수 포인터인 건 짐작이 가는데
C 책 뒤져 보면. goto 문의 label 일 때 쓰이는거 이외에는
콜론의 쓰임새를 찾을 수가 없어서요.
[code:1]
860 struct file_operations {
861 struct module *owner;
862 loff_t (*llseek) (struct file *, loff_t, int);