fwu.h 287 B

12345678910111213141516
  1. /*
  2. * Copyright (c) 2021, Arm Limited. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #ifndef FWU_H
  7. #define FWU_H
  8. #include <stdbool.h>
  9. void fwu_init(void);
  10. bool fwu_is_trial_run_state(void);
  11. const struct fwu_metadata *fwu_get_metadata(void);
  12. #endif /* FWU_H */