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
d12d3de2
...
d12d3de2c5b0ffbdc29d3c99d41fbcee718b1a8d
authored
2003-01-22 13:16:13 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(list_comparator_t): New datatype.
(list_set_comparator): New function
1 parent
0749f184
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletions
include/mailutils/list.h
include/mailutils/list.h
View file @
d12d3de
...
...
@@ -35,10 +35,13 @@ extern int list_replace __P ((list_t list, void *old_item, void *new_item));
extern
int
list_get
__P
((
list_t
,
size_t
_index
,
void
**
pitem
));
typedef
int
list_action_t
__PMT
((
void
*
item
,
void
*
cbdata
));
extern
int
list_do
__P
((
list_t
list
,
list_action_t
*
action
,
void
*
cbdata
));
typedef
int
(
*
list_comparator_t
)
__PMT
((
const
void
*
,
const
void
*
));
extern
list_comparator_t
list_set_comparator
__P
((
list_t
,
list_comparator_t
));
#ifdef __cplusplus
}
#endif
...
...
Please
register
or
sign in
to post a comment