object_resolve_path_component

Function object_resolve_path_component 

Source
pub unsafe extern "C" fn object_resolve_path_component(
    parent: *mut Object,
    part: *const i8,
) -> *mut Object
Expand description

object_resolve_path_component: @parent: the object in which to resolve the path @part: the component to resolve.

This is similar to object_resolve_path with an absolute path, but it only resolves one element (@part) and takes the others from @parent.

Returns: The resolved object or NULL on path lookup failure.