blob: 419f94b99d45d937ae15fd0033ca6c2dad9028c2 (
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_DLL std::vector<std::string> get_files_recursive(const std::string& dir);
}
#endif
|