mirror of
https://github.com/ksherlock/mpw.git
synced 2024-12-02 05:49:20 +00:00
16 lines
259 B
C++
16 lines
259 B
C++
#ifndef __native_internal_h__
|
|
#define __native_internal_h__
|
|
|
|
#include "native.h"
|
|
|
|
namespace native {
|
|
|
|
/* use filename only */
|
|
bool is_text_file_internal(const std::string &path_name);
|
|
bool is_binary_file_internal(const std::string &path_name);
|
|
|
|
}
|
|
|
|
#endif
|
|
|