// adv_struc.h
// data structure routines (vocab, dstroy, juggle, move, put, carry, drop);
#ifndef ADV_STRUC_H
#define ADV_STRUC_H

#include "adventur.h"
#include "adv_common.h"

// function prototypes
int vocab(char *theword, int icode);
void dstroy(int object);
void juggle(int object);
void move(int object, int where);
int put(int object, int where, int pval);
void carry(int object, int where);
void drop(int object, int where);

#endif
