ftp.nice.ch/pub/next/connectivity/infosystems/WAIStation.1.9.6.N.b.tar.gz#/WAIS/lib/freedir.c

This is freedir.c in view mode; [Download] [Up]

/* free list malloc'd by scandir */
void
freedir(list)
  char **list;
{
    char **s = list;

    while (*s) { 
	free(*s++);
    }
    free((char *)list);
}

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.