Начало
This commit is contained in:
14
include/myx-example-interface-library/sum.hpp
Normal file
14
include/myx-example-interface-library/sum.hpp
Normal file
@ -0,0 +1,14 @@
|
||||
#ifndef MYX_EXAMPLE_INTERFACE_LIBRARY_SUM_HPP_
|
||||
#define MYX_EXAMPLE_INTERFACE_LIBRARY_SUM_HPP_
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
int32_t sum( int32_t a, int32_t b )
|
||||
{
|
||||
return( a + b );
|
||||
}
|
||||
|
||||
|
||||
#endif // MYX_EXAMPLE_INTERFACE_LIBRARY_SUM_HPP_
|
Reference in New Issue
Block a user