Author: Unknown
Subject: Deque.h struct pointer
Date: Friday, 03 Apr 2020, 00:10:19
Since typedef struct deque *Deque; is a pointer and Deque.h includes lines like bool isEmptyD (Deque *d); it means we have a pointer to a pointer and need to dereference it to reference struct variables (*d)->head Is this right? Is there an easier way of getting around this?PREV INDEX NEXT