/*
 * This file is part of the OLH system.
 *
 *      Lucien Van Elsen
 *	MIT Project Athena
 *
 * Copyright (C) 1990 by the Massachusetts Institute of Technology.
 * For copying and distribution information, see the file "mit-copyright.h".
 *
 *	$Source: /afs/sipb.mit.edu/project/sipb-athena/repository/src/olh/ascii/menupath.h,v $
 *	$Id: menupath.h,v 1.1 1993/10/12 05:44:43 probe Exp $
 *	$Author: probe $
 *	$Header: /afs/sipb.mit.edu/project/sipb-athena/repository/src/olh/ascii/menupath.h,v 1.1 1993/10/12 05:44:43 probe Exp $
 */

#ifndef _MENUPATH_
#define _MENUPATH_
#include <strings.h>

extern char *menupath;

#define PATH_SEP_CHAR		'@'

#define set_menupath(e)		menupath[0] = PATH_SEP_CHAR; \
  strcpy(menupath+1, field_value(e, POINTER))
  
#endif
