Directory/RB_Directory_Insert_RB_Path [ Functions ]

SYNOPSIS

void RB_Directory_Insert_RB_Path(
    struct RB_Directory *arg_rb_directory,
    struct RB_Path *arg_rb_path )

FUNCTION

Insert a RB_Path into a RB_Directory. The RB_Path is added at the beginning of the list.

SOURCE

{
    arg_rb_path->next = arg_rb_directory->first_path;
    arg_rb_directory->first_path = arg_rb_path;
}