TinyMAZE/
TinyMAZE/config/
TinyMAZE/doc/
TinyMAZE/run/msgs/
TinyMAZE/src/
TinyMAZE/src/db/
TinyMAZE/src/ident/
TinyMAZE/src/io/
TinyMAZE/src/prog/
TinyMAZE/src/softcode/
TinyMAZE/src/util/
#ifndef PASTE_H
#define PASTE_H

struct pastey
{
  char *str;
  struct pastey *next;
};

struct paste_struct
{
  DDATA *des;
  OBJ *who;       /* If NULL, paste to room */
  COM *channel;
  PROG *program;
  struct pastey *paste;
  ATTR *attr;
  struct paste_struct *next;
};

typedef struct paste_struct PASTE;

extern PASTE *paste_stack;

#endif /* PASTE_H */