Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
zmap
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ensembl-gh-mirror
zmap
Commits
ded44e52
Commit
ded44e52
authored
18 years ago
by
edgrif
Browse files
Options
Downloads
Patches
Plain Diff
add a g_list_foreach style function which allows quitting from the loop.
parent
91b1c7d9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/include/ZMap/zmapGLibUtils.h
+9
-5
9 additions, 5 deletions
src/include/ZMap/zmapGLibUtils.h
src/zmapUtils/zmapGLibUtils.c
+29
-3
29 additions, 3 deletions
src/zmapUtils/zmapGLibUtils.c
with
38 additions
and
8 deletions
src/include/ZMap/zmapGLibUtils.h
+
9
−
5
View file @
ded44e52
...
...
@@ -26,9 +26,9 @@
* glib but not included with their distribution.
*
* HISTORY:
* Last edited: May
19
16:
5
1 2006 (edgrif)
* Last edited: May
25
16:1
2
2006 (edgrif)
* Created: Thu Oct 13 15:56:54 2005 (edgrif)
* CVS info: $Id: zmapGLibUtils.h,v 1.
6
2006-05-
19 15:55:5
8 edgrif Exp $
* CVS info: $Id: zmapGLibUtils.h,v 1.
7
2006-05-
25 17:04:0
8 edgrif Exp $
*-------------------------------------------------------------------
*/
#ifndef ZMAP_GLIBUTILS_H
...
...
@@ -56,6 +56,10 @@ typedef enum
}
ZMapGListDirection
;
typedef
gboolean
(
*
ZMapGFuncCond
)(
gpointer
data
,
gpointer
user_data
)
;
/*! @} end of zmapGLibutils docs. */
...
...
@@ -63,10 +67,10 @@ typedef enum
char
*
zMap_g_remove_char
(
char
*
string
,
char
ch
)
;
void
zMap_g_list_foreach_reverse
(
GList
*
list
,
GFunc
func
,
gpointer
user_data
);
void
zMap_g_list_foreach_directional
(
GList
*
list
,
GFunc
func
,
gpointer
user_data
,
void
zMap_g_list_foreach_directional
(
GList
*
list
,
GFunc
func
,
gpointer
user_data
,
ZMapGListDirection
forward
);
gboolean
zMap_g_list_cond_foreach
(
GList
*
list
,
ZMapGFuncCond
func
,
gpointer
user_data
)
;
gboolean
zMap_g_string_replace
(
GString
*
string
,
char
*
target
,
char
*
source
)
;
...
...
This diff is collapsed.
Click to expand it.
src/zmapUtils/zmapGLibUtils.c
+
29
−
3
View file @
ded44e52
...
...
@@ -26,9 +26,9 @@
*
* Exported functions: See ZMap/zmapGLibUtils.h
* HISTORY:
* Last edited: May
19
16:
5
0 2006 (edgrif)
* Last edited: May
25
16:0
2
2006 (edgrif)
* Created: Thu Oct 13 15:22:35 2005 (edgrif)
* CVS info: $Id: zmapGLibUtils.c,v 1.
6
2006-05-
19 15:55:5
8 edgrif Exp $
* CVS info: $Id: zmapGLibUtils.c,v 1.
7
2006-05-
25 17:04:0
8 edgrif Exp $
*-------------------------------------------------------------------
*/
...
...
@@ -129,7 +129,6 @@ char *zMap_g_remove_char(char *string, char ch)
/*
* Additions to GList
*/
...
...
@@ -184,6 +183,33 @@ void zMap_g_list_foreach_directional(GList *list,
}
/*! Just like g_list_foreach() except that the ZMapGFuncCond function can return
* FALSE to stop the foreach loop from executing.
*
* Returns FALSE if ZMapGFuncCond returned FALSE, TRUE otherwise.
*
* */
gboolean
zMap_g_list_cond_foreach
(
GList
*
list
,
ZMapGFuncCond
func
,
gpointer
user_data
)
{
gboolean
status
=
TRUE
;
while
(
list
)
{
GList
*
next
=
list
->
next
;
if
(
!
((
*
func
)(
list
->
data
,
user_data
)))
{
status
=
FALSE
;
break
;
}
list
=
next
;
}
return
status
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment