aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/utils/fs.h
blob: 25ec5ecd11bd1c05c26241562fdcb2525f5e1aac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
* (C) 2015 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/

#ifndef BOTAN_UTIL_FS_H__
#define BOTAN_UTIL_FS_H__

#include <botan/types.h>
#include <vector>
#include <string>

namespace Botan {

BOTAN_DLL std::vector<std::string>
list_all_readable_files_in_or_under(const std::string& dir);

}

#endif