/*
 * utils.h
 *
 * The utils.c file defines various functions that might otherwise
 * have been found in a library like RISC OS Lib, ie. small functions
 * based on SWI calls to RISC OS.
 *
 */

#include "hyper.h"

int decompress(char **file, int *size);

int file_size(char *name) ;

_kernel_oserror * file_load(char *name, char *add) ;

void CLG(void);

char *object_name(ObjectId id);

int is_object(ObjectId id,char *name);

void warn_about_memory(void);

ObjectId named_object(char *name);

char *lookup_token(char *t);
