aboutsummaryrefslogtreecommitdiff
path: root/src/armnnUtils/Filesystem.hpp
blob: d6dc5b97fd56a90cc84ac9b01ed007d4c78549db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// Copyright © 2020 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

namespace armnnUtils
{
namespace Filesystem
{

long GetFileSize(const char* path);

bool Remove(const char* path);

}
}