blob: 59996e4c7d9de17ca7bef2cbbf70fee5f0003302 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//============================================================================
// Author : Sven Gothel
// Copyright : 2022 Gothel Software e.K.
// License : MIT
// Description : C++ Lesson 0.1 Module for external Function
//============================================================================
// include common function declaration
#include "cpp_basics/module_lesson01.hpp"
// function definition as used in another module, see lesson01_function.cpp
int double_value(const int x) {
return 2 * x;
}
|