mirror of
https://github.com/open-simh/simtools.git
synced 2026-03-01 17:37:04 +00:00
git-subtree-dir: crossassemblers/macro11 git-subtree-mainline:fc2c8875cagit-subtree-split:2a14ffe251command was: git subtree add --prefix=crossassemblers/macro11 git://github.com/Rhialto/macro11.git master
27 lines
401 B
C
27 lines
401 B
C
|
|
#ifndef REPT_IRPC__H
|
|
#define REPT_IRPC__H
|
|
|
|
#include "stream2.h"
|
|
|
|
|
|
#ifndef REPT_IRPC__C
|
|
extern STREAM_VTBL rept_stream_vtbl;
|
|
extern STREAM_VTBL irp_stream_vtbl;
|
|
extern STREAM_VTBL irpc_stream_vtbl;
|
|
#endif
|
|
|
|
STREAM *expand_rept(
|
|
STACK *stack,
|
|
char *cp);
|
|
|
|
STREAM *expand_irp(
|
|
STACK *stack,
|
|
char *cp);
|
|
|
|
STREAM *expand_irpc(
|
|
STACK *stack,
|
|
char *cp);
|
|
|
|
#endif
|