Database
hypchem.asc
Associated article: Designing Complex Datacentric Applications
Tags: Database Tools
_DESIGNING COMPLEX DATACENTRIC APPLICATIONS_
by Paul Bonneau
[LISTING ONE]
/**************************************************************************
MARK.C -- determines the molecules in an array of atoms
***************************************************************************/
#define catmMax 6 /* Maximum number of neighbors. */
#define NULL 0
typedef struct atm
{
struct atm * patmParent; /* Parent atom during walk. */
struct atm * ...


