mirror of
https://github.com/Mercury-Language/mercury.git
synced 2025-12-21 00:39:37 +00:00
memory.c: Now memory diagnostics are printed on stderr. wrapper.mod, memory.c: Convert whens to cases and ors to else ifs. other files: copyright notices.
23 lines
550 B
C
23 lines
550 B
C
/*
|
|
** Copyright (C) 1995 University of Melbourne.
|
|
** This file may only be copied under the terms of the GNU Library General
|
|
** Public License - see the file COPYING.LIB in the Mercury distribution.
|
|
*/
|
|
|
|
#ifndef ACCESS_H
|
|
#define ACCESS_H
|
|
|
|
#ifndef LIST_H
|
|
#include "dlist.h"
|
|
#endif
|
|
|
|
extern void reset(void);
|
|
extern void help(void);
|
|
extern Word get_reg(int);
|
|
extern Word set_reg(int, Word);
|
|
extern Word get_mem(Word *);
|
|
extern Word set_mem(Word *, Word);
|
|
extern Word createn(List *);
|
|
extern int getflexline(const char *, FILE *, char **, int *);
|
|
#endif
|