Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
e3d2c437
...
e3d2c437ef0d065f406b5ea0d4e162d0c90977f0
authored
2006-01-20 16:29:18 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Include mu_umaxtostr.h
1 parent
d44a6c72
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
1 deletions
imap4d/imap4d.h
libmu_scm/mu_port.c
mh/mh.h
pop3d/pop3d.h
imap4d/imap4d.h
View file @
e3d2c43
...
...
@@ -95,6 +95,7 @@
#include <mailutils/url.h>
#include <mu_asprintf.h>
#include <mu_umaxtostr.h>
#include <getline.h>
#ifdef __cplusplus
...
...
libmu_scm/mu_port.c
View file @
e3d2c43
...
...
@@ -17,6 +17,7 @@
Boston, MA 02110-1301 USA */
#include "mu_scm.h"
#include <mu_umaxtostr.h>
struct
mu_port
{
...
...
@@ -270,7 +271,7 @@ mu_port_print (SCM exp, SCM port, scm_print_state *pstate)
if
(
mu_stream_size
(
mp
->
stream
,
&
size
)
==
0
)
{
char
buffer
[
64
];
snprintf
(
buffer
,
sizeof
(
buffer
),
" %-5
ld"
,
size
);
snprintf
(
buffer
,
sizeof
(
buffer
),
" %-5
s"
,
mu_umaxtostr
(
0
,
size
)
);
scm_puts
(
buffer
,
port
);
scm_puts
(
" chars"
,
port
);
}
...
...
mh/mh.h
View file @
e3d2c43
...
...
@@ -54,6 +54,7 @@
#include <mailutils/mime.h>
#include <mu_asprintf.h>
#include <mu_umaxtostr.h>
#include <getline.h>
#if !HAVE_DECL_STRCHRNUL
...
...
pop3d/pop3d.h
View file @
e3d2c43
...
...
@@ -25,6 +25,7 @@
#endif
#include <mu_dbm.h>
#include <mu_asprintf.h>
#include <mu_umaxtostr.h>
/* The implementation */
#define IMPL "GNU POP3 Daemon"
...
...
Please
register
or
sign in
to post a comment