use m_strdup and m_strlen that are inlined for efficiency
[apps/madmutt.git] / state.c
diff --git a/state.c b/state.c
index ca73d4a..3c87f3c 100644 (file)
--- a/state.c
+++ b/state.c
@@ -70,7 +70,7 @@ void state_prefix_putc (char c, STATE * s)
   if (s->flags & M_PENDINGPREFIX) {
     int i;
 
-    i = str_len (Quotebuf);
+    i = m_strlen(Quotebuf);
     Quotebuf[i++] = c;
     Quotebuf[i] = '\0';
     if (i == sizeof (Quotebuf) - 1 || c == '\n') {
@@ -102,11 +102,11 @@ void state_prefix_putc (char c, STATE * s)
         snprintf (buf, sizeof (buf), "%s%s", NONULL (s->prefix), Quotebuf);
 
 #ifdef DEBUG
-      if (str_len (buf) >= 2) {
-        save = buf[str_len (buf) - 1];
-        buf[str_len (buf) - 1] = '\0';
+      if (m_strlen(buf) >= 2) {
+        save = buf[m_strlen(buf) - 1];
+        buf[m_strlen(buf) - 1] = '\0';
         debug_print (2, ("buf = '%s'\n", buf));
-        buf[str_len (buf)] = save;
+        buf[m_strlen(buf)] = save;
       }
 #endif