copy/prodosext.h

12 lines
274 B
C
Raw Permalink Normal View History

2018-11-13 02:27:27 +00:00
#ifndef PRODOSEXT_H
#define PRODOSEXT_H
#include <stdbool.h>
#include <stdint.h>
2022-04-05 02:18:19 +00:00
extern bool getFileInfo(FileName name, struct GetFileInfoParams *params);
2018-11-13 02:27:27 +00:00
extern bool isDirectory(struct GetFileInfoParams *params);
extern const char *getMessage(uint8_t errorCode);
#endif