blob: 4d6e2fe40ee6494ea560a1d852d2a1e69b151f77 (
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
* (C) 2015 Simon Warta (Kullo GmbH)
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_UTIL_FILESYSTEM_H_
#define BOTAN_UTIL_FILESYSTEM_H_
#include <botan/types.h>
#include <vector>
#include <string>
namespace Botan {
BOTAN_TEST_API std::vector<std::string> get_files_recursive(const std::string& dir);
}
#endif
|