From 1b472ce59eb821a0505157f43e7bfc2ec40bc6b4 Mon Sep 17 00:00:00 2001 From: Peter McGoron Date: Mon, 9 Aug 2021 13:38:43 -0400 Subject: [PATCH] rename parse to have namespace --- input.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/input.c b/input.c index 550292a..9b6807e 100644 --- a/input.c +++ b/input.c @@ -7,8 +7,8 @@ void libscomm_reset(struct libscomm_input *in) { in->len = 0; } -static enum libscomm_input_r parse(struct libscomm_input *in, - struct libscomm_line *line) { +static enum libscomm_input_r libscomm_parse( + struct libscomm_input *in, struct libscomm_line *line) { char *s = in->intbuf; enum libscomm_input_r r = LIBSCOMM_ARG_OVERFLOW;