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
aaa480e7
...
aaa480e7da94082c35806958e00179bcce1cd316
authored
2007-02-22 10:11:22 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(getitem): Change signature
1 parent
7679a6dd
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
libproto/include/iterator0.h
libproto/include/iterator0.h
View file @
aaa480e
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 1999, 2000, 2004 Free Software Foundation, Inc.
Copyright (C) 1999, 2000, 2004
, 2007
Free Software Foundation, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
...
...
@@ -39,7 +39,7 @@ struct _mu_iterator
int
(
*
destroy
)
(
mu_iterator_t
itr
,
void
*
owner
);
int
(
*
first
)
(
void
*
owner
);
int
(
*
next
)
(
void
*
owner
);
int
(
*
getitem
)
(
void
*
owner
,
void
**
pret
);
int
(
*
getitem
)
(
void
*
owner
,
void
**
pret
,
const
void
**
pkey
);
int
(
*
curitem_p
)
(
void
*
owner
,
void
*
item
);
int
(
*
finished_p
)
(
void
*
owner
);
};
...
...
Please
register
or
sign in
to post a comment