rename parse to have namespace

This commit is contained in:
Peter McGoron 2021-08-09 13:38:43 -04:00
parent 59523d6de4
commit 1b472ce59e
1 changed files with 2 additions and 2 deletions

View File

@ -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;