bootstrap.h 350 B

1234567891011121314151617181920
  1. //
  2. // bootstrap.h
  3. // electra
  4. //
  5. // Created by Jamie Bishop on 11/02/2018.
  6. // Copyright © 2018 Electra Team. All rights reserved.
  7. //
  8. #ifndef bootstrap_h
  9. #define bootstrap_h
  10. #include <stdbool.h>
  11. #include <stdio.h>
  12. void copy_basebinaries(void);
  13. void extract_bootstrap(void);
  14. void post_bootstrap(const bool runUICache);
  15. #endif /* bootstrap_h */