Lolly
1.4.28
Loading...
Searching...
No Matches
tests
lolly
system
example_dynamic_library.cpp
Go to the documentation of this file.
1
2
/******************************************************************************
3
* MODULE : example_dynamic_library.cpp
4
* DESCRIPTION: an example dynamic library for testing
5
* COPYRIGHT : (C) 2024 jingkaimori
6
*******************************************************************************
7
* This software falls under the GNU general public license version 3 or later.
8
* It comes WITHOUT ANY WARRANTY WHATSOEVER. For details, see the file LICENSE
9
* in the root directory or <http://www.gnu.org/licenses/gpl-3.0.html>.
10
******************************************************************************/
11
12
extern
"C"
{
13
double
14
square_div_2
(
int
arg
) {
15
return
arg
*
arg
/ 2.0;
16
};
17
}
list
The list class represents a linked list.
Definition
list.hpp:48
square_div_2
double square_div_2(int arg)
Definition
example_dynamic_library.cpp:14
Generated by
1.10.0