mirror of
https://github.com/open-simh/simtools.git
synced 2026-01-13 07:19:48 +00:00
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
|