This website works better with JavaScript.
Home
Explore
Help
Sign In
kris
/
httperf
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
c99 bool adjustment to protoype
ahc_fix_select
tedbullock
17 years ago
parent
a850060335
commit
cb71ec84ea
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
httperf/src/lib/list.c
+1
-1
httperf/src/lib/list.h
+ 1
- 1
httperf/src/lib/list.c
View File
@@ -126,7 +126,7 @@ list_pop(struct List * l)
}
void
list_remove_if_true(struct List *l,
int
(*action) (Any_Type))
list_remove_if_true(struct List *l,
bool
(*action) (Any_Type))
{
struct Node *n = l->dummy_head;
+ 1
- 1
httperf/src/lib/list.h
View File
@@ -32,7 +32,7 @@
#ifndef list_h
#define list_h
typedef
int
(*list_action) (Any_Type);
typedef
bool
(*list_action) (Any_Type);
struct List;
struct List *list_create();
Write
Preview
Loading…
Cancel
Save