silc_list_insert

SYNOPSIS

    void silc_list_insert(SilcList list, void *current, void *entry);

DESCRIPTION

Insert new entry indicated by `entry' after the entry `current' to the list indicated by `list'. If `current' is NULL, then the `entry' is added at the head of the list. Use the silc_list_add to add at the end of the list.