/* ============================================================================= write.c -- external declarations ============================================================================= */ #pragma once #include "biosdefs.h" #include "stdint.h" /* ============================================================================= external functions ============================================================================= */ extern int16_t _filewr(struct fcb *fp, int8_t *buffer, uint16_t len); extern int16_t _putsec(struct fcb *fp, int8_t *buf, uint16_t len); extern int16_t write(int16_t fd, int8_t *buff, uint16_t len);