/*
 *  SF3KtoProT - Converts Star Fighter 3000 music to Amiga ProTracker format
 *  Platform-specific code
 *  Copyright (C) 2009  Chris Bazley
 */

#ifndef PLATFORM_H
#define PLATFORM_H

#include <stdbool.h>
#include <stdint.h>

extern char *append_leaf(const char *file_path, const char *leaf);
extern const char *find_leaf(const char *file_path);
extern bool set_file_type(const char *file_path);
extern char *append_ext(const char *file_path, const char *ext);
extern int32_t read_int32le(const void *p);

#endif /* PLATFORM_H */
