Update Crate and Examples

This commit is contained in:
GuilhermeWerner
2021-04-18 20:02:28 -03:00
parent b82addd7e5
commit 293aef9dbf
6 changed files with 48 additions and 27 deletions

33
Source/Library.h Normal file
View File

@ -0,0 +1,33 @@
#pragma once
#include <stdarg.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>
#ifdef __cplusplus
namespace Library
{
#endif
#ifdef __cplusplus
extern "C"
{
#endif
float Add(float num1, float num2);
float Divide(float num1, float num2);
float Multiply(float num1, float num2);
float Subtract(float num1, float num2);
#ifdef __cplusplus
}
#endif
#ifdef __cplusplus
}
#endif