BkSymLink

typedef struct BkSymLink
{
    BkFileBase base; /* intended to be accessed using a cast */
    
    char target[NCHARS_SYMLINK_TARGET_MAX];
    
} BkSymLink;

Besides the BkFileBase all a symbolic link has is a target (a string - what it's pointing to). You may want to display this for the user to see.