我正在阅读 FUSE 的示例代码:
http://fuse.sourceforge.net/helloworld.html
而且我无法理解以下代码片段的作用:
static int hello_readdir(const char *path, void *buf, fuse_fill_dir_t filler,
off_t offset, struct fuse_file_info *fi)
{
(void) offset;
(void) fi;
具体来说,(无效)“变量名”的东西。我以前从未在 C 程序中见过这种结构,所以我什至不知道在 Google 搜索框中输入什么。我目前最好的猜测是它是未使用函数参数的某种说明符?如果有人知道这是什么并且可以帮助我,那就太好了。谢谢!