/* fstruct.h * last revised at 8, April 1994 * * Copyright (C) 1994, All rights reserved. * written by Gyudong Kim(chilly@eleceng.adelaide.edu.au) * */ struct branch { char *name; struct branch *offspring; struct branch *next; }; struct names { int num; /* for CIF */ char *name; char *direntry; /* for GED */ struct names *next; }; /* fstruct.h */