c99 bool adjustment to protoype

This commit is contained in:
tedbullock 2007-11-16 03:42:14 +00:00
父節點 a850060335
當前提交 cb71ec84ea
共有 2 個檔案被更改,包括 2 行新增2 行删除

查看文件

@ -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;

查看文件

@ -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();