ArmNN
 20.02
TestSharedObject.hpp
Go to the documentation of this file.
1 //
2 // Copyright © 2017 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #pragma once
7 
8 #include <cstdint>
9 
10 // No name mangling
11 extern "C"
12 {
13 int TestFunction1(int i);
14 }
15 
16 // C++ name mangling
17 extern int TestFunction2(int i);
18 
19 // No external linkage
20 int TestFunction3(int i);
int TestFunction1(int i)
int TestFunction3(int i)
int TestFunction2(int i)