blob: c549b3c7d91f46e0dd57246c77a00d5c48c9e430 [file] [log] [blame]
#ifndef AOS_LIBC_DIRNAME_H_
#define AOS_LIBC_DIRNAME_H_
#include <string>
namespace aos::libc {
// Thread-safe version of dirname(3).
::std::string Dirname(const ::std::string &path);
} // namespace aos::libc
#endif // AOS_LIBC_DIRNAME_H_