I'm trying to access the code of the minimum.size.separators function from igraph package from R. I tried everything I could using what is suggested here, and only the following appears for me:
function (graph) 
{
    if (!is_igraph(graph)) {
        stop("Not a graph object")
    }
    on.exit(.Call("R_igraph_finalizer", PACKAGE = "igraph"))
    res <- .Call("R_igraph_minimum_size_separators", graph, PACKAGE = "igraph")
    if (igraph_opt("return.vs.es")) {
        for (i_ in seq_along(res)) {
            res[[i_]] <- create_vs(graph, res[[i_]])
        }
    }
    res
}
<environment: namespace:igraph>
In fact this is not the code that performs what the function does, but rather it is the code that calls R_igraph_minimum_size_separators, which I did not find its code. Does anyone know how to find the R_igraph_minimum_size_separators code?
