Начало

This commit is contained in:
2022-10-04 13:22:29 +03:00
commit 5c5060e4a4
28 changed files with 5069 additions and 0 deletions

View 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_