Add tftp_custom_fwrite
This commit is contained in:
2023-11-13 13:28:57 +01:00
parent d36ce9ae1e
commit c568acc9e6
2 changed files with 22 additions and 0 deletions

View File

@@ -30,6 +30,7 @@ void tftp_server_init(void);
void tftp_server_deinit(void);
void tftp_custom_fseek(tftp_custom_file_t* handle, size_t offset, int whence);
size_t tftp_custom_fread(void* buf, size_t bytes, tftp_custom_file_t* handle);
size_t tftp_custom_fwrite(void* buf, size_t bytes, tftp_custom_file_t* handle);
#ifdef __cplusplus
}