copy/prodosext.h

12 lines
274 B
C

#ifndef PRODOSEXT_H
#define PRODOSEXT_H
#include <stdbool.h>
#include <stdint.h>
extern bool getFileInfo(FileName name, struct GetFileInfoParams *params);
extern bool isDirectory(struct GetFileInfoParams *params);
extern const char *getMessage(uint8_t errorCode);
#endif