X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=status.c;h=5265a7c6bcaa53827003cf9228ecf3a30006115d;hp=2a6f70b3aee10d0b96ece369a8f1d2980f639226;hb=666a29207bb781f47ec85f6a3c3cdeb554b30c21;hpb=c3e57678c8be193fc137854020f3a90887be97c9 diff --git a/status.c b/status.c index 2a6f70b..5265a7c 100644 --- a/status.c +++ b/status.c @@ -17,6 +17,11 @@ #include "sort.h" #include "mapping.h" #include "mx.h" +#include "buffy.h" + +#include "lib/mem.h" +#include "lib/intl.h" +#include "lib/str.h" #include #include @@ -64,9 +69,9 @@ static const char *status_format_str (char *buf, size_t buflen, char op, case 'b': if (!optional) { snprintf (fmt, sizeof (fmt), "%%%sd", prefix); - snprintf (buf, buflen, fmt, mutt_buffy_check (0)); + snprintf (buf, buflen, fmt, buffy_check (0)); } - else if (!mutt_buffy_check (0)) + else if (!buffy_check (0)) optional = 0; break; @@ -236,7 +241,7 @@ static const char *status_format_str (char *buf, size_t buflen, char op, if (!StChars) buf[0] = 0; - else if (i >= mutt_strlen (StChars)) + else if (i >= str_len (StChars)) buf[0] = StChars[0]; else buf[0] = StChars[i];