#define TAILQ_ENTRY(type) \
struct { \
struct type *tqe_next; /* next element */ \
struct type **tqe_prev; /* address of previous next element */ \
}
我发现上面的代码使用了指向指针的指针,这不是唯一的。我想知道为什么要这样做?指针本身不能处理吗?