Update file_utils.c

This commit is contained in:
Scoots 2017-04-22 17:25:20 -04:00 committed by GitHub
parent 5ebf791c46
commit 5749e24299
1 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
#include "file_utils.h" #include "file_utils.h"
/************************************************************************************ /************************************************************************************
* @author Jacob McCloughan * @author Scoots
* @version 3/03/2017 * @version 3/03/2017
* @see file_utils.h * @see file_utils.h
* *
@ -94,4 +94,4 @@ int write_file(char* filename, char *buffer, int size) {
// Closes the file and returns 1. // Closes the file and returns 1.
fclose(fil); fclose(fil);
return 1; return 1;
} }