| Summary |
#include <net_config.h>
void tftp_fclose (
FILE* file ); /* Pointer to the file to close. */
|
| Description | The tftp_fclose function closes the file identified by the file stream pointer in the function argument. The tftp_fclose function is in the TFTP_uif.c module. The prototype is defined in net_config.h. |
| Return Value | The tftp_fclose function does not return any value. |
| See Also | tftp_fopen, tftp_fread, tftp_fwrite |
| Example |
void tftp_fclose (FILE *file) {
/* Close the file, opened for reading or writing. This function is */
/* called, when the TFTP Session is closing. */
fclose (file);
}
|