home *** CD-ROM | disk | FTP | other *** search
- #include "util.h"
- #include "mmdf.h"
- /*
- * MULTI-CHANNEL MEMO DISTRIBUTION FACILITY (MMDF)
- *
- *
- * Copyright (C) 1979,1980,1981 University of Delaware
- *
- * Department of Electrical Engineering
- * University of Delaware
- * Newark, Delaware 19711
- *
- * Phone: (302) 738-1163
- *
- *
- * This program module was developed as part of the University
- * of Delaware's Multi-Channel Memo Distribution Facility (MMDF).
- *
- * Acquisition, use, and distribution of this module and its listings
- * are subject restricted to the terms of a license agreement.
- * Documents describing systems using this module must cite its source.
- *
- * The above statements must be retained with all copies of this
- * program and may not be removed without the consent of the
- * University of Delaware.
- *
- *
- * version -1 David H. Crocker March 1979
- * version 0 David H. Crocker April 1980
- * version v7 David H. Crocker May 1981
- * version 1 David H. Crocker October 1981
- *
- */
-
- #include "ch.h"
- #include "dm.h"
-
- extern LLog *logptr;
- extern Domain **dm_list;
-
- Domain *dm_nm2struct (name,pos) /* give pointer to structure for domain */
- char name[]; /* string name of domain */
- Domain ***pos;
- {
- register Domain **dmnptr;
-
- #ifdef DEBUG
- ll_log (logptr, LLOGBTR, "dm_nm2struct (%s)", name);
- #endif
-
- if (*pos == (Domain **) 0)
- *pos = dm_list;
-
- for (dmnptr = *pos; *dmnptr != (Domain *) 0; dmnptr++)
- if (lexequ (name, (*dmnptr) -> dm_domain))
- {
- #ifdef DEBUG
- ll_log (logptr, LLOGFTR, "hit");
- #endif
- *pos = dmnptr+1; /* point to next entry in list */
- return (*dmnptr); /* return addr of chan struct entry */
- }
- return ((Domain *) NOTOK);
- }
-