mpw/native/native_internal.h

21 lines
378 B
C
Raw Normal View History

#ifndef __native_internal_h__
#define __native_internal_h__
2016-07-31 18:10:05 +00:00
#include <string>
#include <cstdint>
#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);
2016-07-31 19:34:41 +00:00
void prodos_ftype_in(uint8_t *buffer);
void prodos_ftype_out(uint8_t *buffer);
}
#endif