X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=menu.c;h=54d36ddaad9bac8a0edb6adabdacee33a1674192;hp=981382b65cde04fa977314c51dd3ff22975ca9f7;hb=ecaab35b973fbceb58b5ed174971c82762cc0199;hpb=9a1efcc01ddeca4106847f8eb28a704aca2dcf0b diff --git a/menu.c b/menu.c index 981382b..54d36dd 100644 --- a/menu.c +++ b/menu.c @@ -12,6 +12,7 @@ #endif #include +#include #include #include "mutt.h" @@ -25,7 +26,6 @@ #include "imap.h" #endif -#include "lib/str.h" #include #include @@ -38,7 +38,7 @@ static void print_enriched_string (int attr, unsigned char *s, int do_color) { wchar_t wc; size_t k; - size_t n = str_len ((char *) s); + size_t n = m_strlen((char *) s); mbstate_t mbstate; memset (&mbstate, 0, sizeof (mbstate)); @@ -157,7 +157,7 @@ void menu_pad_string (char *s, size_t n) cols = COLS - shift - SidebarWidth; else cols = COLS - shift; - mutt_format_string (tmpbuf, n, cols, cols, 0, ' ', s, str_len (s), 1); + mutt_format_string (tmpbuf, n, cols, cols, 0, ' ', s, m_strlen(s), 1); tmpbuf[n - 1] = 0; snprintf (s, n, "%s", tmpbuf); /* overkill */ p_delete(&tmpbuf);