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
52e650d0
...
52e650d00750fe8d8fdbc8cbae3fa3e68f565d54
authored
2003-10-10 02:09:03 +0000
by
Alain Magloire
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
declare list_to_array();
1 parent
2ddc6851
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
include/mailutils/list.h
include/mailutils/list.h
View file @
52e650d
...
...
@@ -34,6 +34,7 @@ extern int list_count __P ((list_t, size_t *pcount));
extern
int
list_remove
__P
((
list_t
,
void
*
item
));
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
));
extern
int
list_to_array
__P
((
list_t
list
,
void
**
array
,
size_t
count
,
size_t
*
pcount
));
typedef
int
list_action_t
__PMT
((
void
*
item
,
void
*
cbdata
));
...
...
@@ -44,6 +45,7 @@ typedef int (*list_comparator_t) __PMT((const void*, const void*));
extern
list_comparator_t
list_set_comparator
__P
((
list_t
,
list_comparator_t
));
extern
int
list_set_destroy_item
__P
((
list_t
list
,
void
(
*
destoy_item
)
__P
((
void
*
))));
#ifdef __cplusplus
}
...
...
Please
register
or
sign in
to post a comment