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
7ea39bc2
...
7ea39bc249000bde82b94f99f124ae274b7282b2
authored
2003-08-17 20:09:50 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mh_global_profile_iterate): New function
1 parent
b198d0ff
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
mh/mh.h
mh/mh_global.c
mh/mh.h
View file @
7ea39bc
...
...
@@ -241,6 +241,7 @@ char *mh_current_folder __P((void));
char
*
mh_global_sequences_get
__P
((
const
char
*
name
,
const
char
*
defval
));
int
mh_global_sequences_set
__P
((
const
char
*
name
,
const
char
*
value
));
void
mh_global_save_state
__P
((
void
));
int
mh_global_profile_iterate
__P
((
mh_context_iterator
fp
,
void
*
data
));
int
mh_global_context_iterate
__P
((
mh_context_iterator
fp
,
void
*
data
));
int
mh_global_sequences_iterate
__P
((
mh_context_iterator
fp
,
void
*
data
));
...
...
mh/mh_global.c
View file @
7ea39bc
...
...
@@ -41,6 +41,12 @@ mh_global_profile_set (const char *name, const char *value)
return
mh_context_set_value
(
profile
,
name
,
value
);
}
int
mh_global_profile_iterate
(
mh_context_iterator
fp
,
void
*
data
)
{
return
mh_context_iterate
(
profile
,
fp
,
data
);
}
void
mh_read_profile
()
{
...
...
Please
register
or
sign in
to post a comment