#ifndef DEPOT_H #define DEPOT_H #include "absl/status/statusor.h" #include #include void DepotInit(const std::string &argv0); absl::StatusOr DepotResolveFile(const std::string &depotpath); std::string DepotMustResolveFile(const std::string &depotpath); #endif