
/* these two functions for displaying a non-chained data structure	*/

ULONG 
dumpZZZ( addr, ptr)
APTR addr;
struct ZZZ *ptr;
{
    ShowAddress("ZZZ", addr);

    /* dump other ZZZ here	*/

    return (0);
}

ShowZZZ(arg)
char	*arg;
{
     struct ZZZ	*ptr;   

     if (AddrArg( arg, &ptr))
     {
	printf("\n");
	doMinNode(ptr, sizeof (struct ZZZ), dumpZZZ);
     }
     else puts("bad syntax");
}
