blob: 0b317568e6756df3f8118985b84719fe564f892c [file] [log] [blame]
// Copyright 2021 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef FUSEBOX_UTIL_H_
#define FUSEBOX_UTIL_H_
#include <string>
// Returns fuse open flags string: eg., "O_RDWR|O_CREAT|O_TRUNC".
std::string OpenFlagsToString(int flags);
// Returns fuse `to_set` flags string.
std::string ToSetFlagsToString(int flags);
#endif // FUSEBOX_UTIL_H_