// utility routines (shift, ran, datime, ciao, bug)
#ifndef ADV_UTIL_H
#define ADV_UTIL_H

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

// function prototypes
int shift(int val, int dist);
int ran(int range);
void datime(long *d, long *t);
void ciao(void);
void bug(int num);

#endif
