JayBeams  0.1
Another project to have fun coding.
filetype.hpp
Go to the documentation of this file.
1 #ifndef jb_filetype_hpp
2 #define jb_filetype_hpp
3 
4 #include <string>
5 
6 namespace jb {
7 
8 /**
9  * Return true if the filename ends in .gz
10  */
11 bool is_gz(std::string const& filename);
12 
13 } // namespace jb
14 
15 #endif // jb_filetype_hpp
bool is_gz(std::string const &filename)
Return true if the filename ends in .gz.
Definition: filetype.cpp:3
The top-level namespace for the JayBeams library.
Definition: as_hhmmss.hpp:7