1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-08-20 20:54:47 -04:00

DOM: Export del_from_dom_node_list.

This commit is contained in:
Witold Filipczyk 2007-06-12 11:44:58 +02:00 committed by Witold Filipczyk
parent 2211994789
commit a6eca1ae60
2 changed files with 3 additions and 1 deletions

View File

@ -89,7 +89,7 @@ add_to_dom_node_list(struct dom_node_list **list_ptr,
return list;
}
static void
void
del_from_dom_node_list(struct dom_node_list *list, struct dom_node *node)
{
struct dom_node *entry;

View File

@ -472,5 +472,7 @@ get_dom_node_list_by_type(struct dom_node *parent, enum dom_node_type type)
/* Return the root node. */
struct dom_node *get_dom_root_node(struct dom_node *);
void del_from_dom_node_list(struct dom_node_list *list, struct dom_node *node);
#endif