From d73b626719a9d30d509706a457359583e4fce9cf Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Wed, 25 Oct 2017 08:16:02 -0700 Subject: [PATCH] SCP: Expose read_line_p for potential use by library support routines --- scp.h | 1 + 1 file changed, 1 insertion(+) diff --git a/scp.h b/scp.h index c0afe6ae..f4d74fd3 100644 --- a/scp.h +++ b/scp.h @@ -251,6 +251,7 @@ const char *sim_fmt_secs (double seconds); const char *sim_fmt_numeric (double number); const char *sprint_capac (DEVICE *dptr, UNIT *uptr); char *read_line (char *cptr, int32 size, FILE *stream); +char *read_line_p (const char *prompt, char *ptr, int32 size, FILE *stream); void fprint_reg_help (FILE *st, DEVICE *dptr); void fprint_set_help (FILE *st, DEVICE *dptr); void fprint_show_help (FILE *st, DEVICE *dptr);