diff options
Diffstat (limited to 'src/m_comm.c')
-rw-r--r-- | src/m_comm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/m_comm.c b/src/m_comm.c index 66e0ac2..30f609d 100644 --- a/src/m_comm.c +++ b/src/m_comm.c @@ -14,10 +14,10 @@ #include <stdint.h> #include "d_enum.h" -#include "e_lcom.h" +#include "e_line.h" #include "m_prompt.h" #include "p_line.h" -#include "s_lcom.h" +#include "s_line.h" uint8_t m_comm(const char line[], @@ -26,8 +26,8 @@ uint8_t if (line[0] != '\0') { p_line((char*)line, msh); - e_lcom(msh); - lcom_clear(&msh->curr); + e_line(msh); + s_line_clear(&msh->curr); } else { |