1 /* 2 * Copyright (C) 2025 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 #ifndef _ADLT_TEST_DUPLICATES_H_ 16 #define _ADLT_TEST_DUPLICATES_H_ 17 18 #ifdef __cplusplus 19 extern "C" { 20 #endif 21 22 extern int val; 23 extern const int valA; 24 extern const int valB; 25 extern const int valC; 26 27 int get_val(void); 28 29 int get_val_from_A(void); 30 int get_val_from_B(void); 31 int get_val_from_C(void); 32 33 int get_valA_from_A(void); 34 int get_valB_from_A(void); 35 int get_valC_from_A(void); 36 int get_valA_from_B(void); 37 int get_valB_from_B(void); 38 int get_valC_from_B(void); 39 int get_valA_from_C(void); 40 int get_valB_from_C(void); 41 int get_valC_from_C(void); 42 43 #ifdef __cplusplus 44 } 45 #endif 46 47 #endif