cellar/include/fs.hpp
2017-03-23 01:03:33 -07:00

17 lines
213 B
C++

#ifndef __FS_HPP
#define __FS_HPP
#pragma once
#include <string>
#include <vector>
using namespace std;
namespace cellar {
namespace fs {
extern vector<string> listdir(string path);
}
}
#endif // __FS_HPP