
// Copyright {Jagger Software Limited} 2003

#include "ownership/fcloser.hpp"

#include "c/stdio.hpp"

namespace ownership
{
    void fcloser::operator()(FILE * closing) const
    {
        if (closing != 0)
        {
            c::fclose(closing);
        }
    }
}


