file_utils.h 319 B

123456789101112131415161718
  1. //
  2. // file_utils.h
  3. // electra
  4. //
  5. // Created by Jamie on 27/01/2018.
  6. // Copyright © 2018 Electra Team. All rights reserved.
  7. //
  8. #ifndef file_utils_h
  9. #define file_utils_h
  10. #include <stdio.h>
  11. int file_exists_electra(const char *filename);
  12. int cp_electra(const char *to, const char *from);
  13. #endif /* file_utils_h */