17ec681f3Smrg/* 27ec681f3Smrg * Copyright (C) 2017 The Android Open Source Project 37ec681f3Smrg * 47ec681f3Smrg * Licensed under the Apache License, Version 2.0 (the "License"); 57ec681f3Smrg * you may not use this file except in compliance with the License. 67ec681f3Smrg * You may obtain a copy of the License at 77ec681f3Smrg * 87ec681f3Smrg * http://www.apache.org/licenses/LICENSE-2.0 97ec681f3Smrg * 107ec681f3Smrg * Unless required by applicable law or agreed to in writing, software 117ec681f3Smrg * distributed under the License is distributed on an "AS IS" BASIS, 127ec681f3Smrg * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 137ec681f3Smrg * See the License for the specific language governing permissions and 147ec681f3Smrg * limitations under the License. 157ec681f3Smrg */ 167ec681f3Smrg 177ec681f3Smrg#pragma once 187ec681f3Smrg 197ec681f3Smrg#ifdef __cplusplus 207ec681f3Smrgextern "C" { 217ec681f3Smrg#endif 227ec681f3Smrg 237ec681f3Smrg/* Returns `1` if the device is debuggable or `0` if not. */ 247ec681f3Smrgint __android_log_is_debuggable(); 257ec681f3Smrg 267ec681f3Smrg#ifdef __cplusplus 277ec681f3Smrg} 287ec681f3Smrg#endif 29