diff options
author | Elliott Hughes <enh@google.com> | 2015-02-11 00:55:44 +0100 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-02-11 00:55:45 +0100 |
commit | 35efcd275f90f5ffea371bb228a14b36c50e61d3 (patch) | |
tree | 5fc39fefa4022fa75857792dd517a9a14f60256c /common.h | |
parent | Merge "Remove dead/unused code and realign some of the comments to make it more cleaner and easier to read" (diff) | |
parent | recovery: Properly detect userdebug or eng builds (diff) | |
download | android_bootable_recovery-35efcd275f90f5ffea371bb228a14b36c50e61d3.tar android_bootable_recovery-35efcd275f90f5ffea371bb228a14b36c50e61d3.tar.gz android_bootable_recovery-35efcd275f90f5ffea371bb228a14b36c50e61d3.tar.bz2 android_bootable_recovery-35efcd275f90f5ffea371bb228a14b36c50e61d3.tar.lz android_bootable_recovery-35efcd275f90f5ffea371bb228a14b36c50e61d3.tar.xz android_bootable_recovery-35efcd275f90f5ffea371bb228a14b36c50e61d3.tar.zst android_bootable_recovery-35efcd275f90f5ffea371bb228a14b36c50e61d3.zip |
Diffstat (limited to 'common.h')
-rw-r--r-- | common.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -17,6 +17,7 @@ #ifndef RECOVERY_COMMON_H #define RECOVERY_COMMON_H +#include <stdbool.h> #include <stdio.h> #include <stdarg.h> @@ -46,6 +47,8 @@ FILE* fopen_path(const char *path, const char *mode); void ui_print(const char* format, ...); +bool is_ro_debuggable(); + #ifdef __cplusplus } #endif |