Rev 297 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 297 | Rev 317 | ||
---|---|---|---|
Line 45... | Line 45... | ||
45 | //________________________________________________________________________________________________________________________________________ |
45 | //________________________________________________________________________________________________________________________________________ |
Line 46... | Line 46... | ||
46 | 46 | ||
47 | extern uint8_t Fat16_Init(void); |
47 | extern uint8_t Fat16_Init(void); |
Line 48... | Line 48... | ||
48 | extern uint8_t Fat16_Deinit(void); |
48 | extern uint8_t Fat16_Deinit(void); |
49 | 49 | ||
50 | extern File_t * fopen_(const int8_t *filename, const int8_t mode); |
50 | extern File_t * fopen_(int8_t * const filename, const int8_t mode); |
51 | extern int16_t fclose_(File_t *file); |
51 | extern int16_t fclose_(File_t *file); |
52 | extern uint8_t fexist_(const int8_t *filename); |
52 | extern uint8_t fexist_(int8_t * const filename); |
53 | extern int16_t fflush_(File_t *file); |
53 | extern int16_t fflush_(File_t * const file); |
54 | extern int16_t fseek_(File_t *file, int32_t offset, int16_t origin); |
54 | extern int16_t fseek_(File_t * const file, int32_t offset, int16_t origin); |
55 | extern int16_t fgetc_(File_t *file); |
55 | extern int16_t fgetc_(File_t * const file); |
56 | extern int16_t fputc_(int8_t c, File_t *file); |
56 | extern int16_t fputc_(const int8_t c, File_t * const file); |
57 | extern uint32_t fread_(void *buffer, uint32_t size, uint32_t count, File_t *file); |
57 | extern uint32_t fread_(void * const buffer, uint32_t size, uint32_t count, File_t * const file); |
58 | extern uint32_t fwrite_(void *buffer, uint32_t size, uint32_t count, File_t *file); |
58 | extern uint32_t fwrite_(void *buffer, uint32_t size, uint32_t count, File_t *file); |
59 | extern int16_t fputs_(const int8_t *string, File_t *file); |
59 | extern int16_t fputs_(int8_t * const string, File_t * const file); |
Line 60... | Line 60... | ||
60 | extern uint8_t * fgets_(int8_t *string, int16_t length, File_t *file); |
60 | extern int8_t * fgets_(int8_t * const string, const int16_t length, File_t * const file); |