I am making linked list of sectors. A sector can either be of type directorySector or userSector. The first sector is always a directory sector, and the rest are not known until run time. How would I link a directorySector to a userSector? I can't have the example code because a sector of type directorySector does not always point to another directorySector. Thanks in advance!
struct directorySector{
directorySector *ptr;
};