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
4ea13946
...
4ea139462d9235aae6428244706cc24e0029bc1c
authored
2006-04-21 22:05:32 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mu-strerror): New function
1 parent
e513fff2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
libmu_scm/mu_scm.c
libmu_scm/mu_scm.c
View file @
4ea1394
...
...
@@ -153,6 +153,17 @@ SCM_DEFINE (scm_mu_register_format, "mu-register-format", 0, 0, 1,
}
#undef FUNC_NAME
SCM_DEFINE
(
scm_mu_strerror
,
"mu-strerror"
,
1
,
0
,
0
,
(
SCM
ERR
),
"Return the error message corresponding to ERR, which must be
\n
"
"an integer value.
\n
"
)
#define FUNC_NAME s_scm_mu_strerror
{
SCM_ASSERT
(
scm_is_integer
(
ERR
),
ERR
,
SCM_ARG1
,
FUNC_NAME
);
return
scm_makfrom0str
(
mu_strerror
(
scm_to_int
(
ERR
)));
}
#undef FUNC_NAME
static
struct
{
char
*
name
;
...
...
Please
register
or
sign in
to post a comment