This commit is contained in:
2025-07-18 16:11:01 -05:00
parent 889c6f9826
commit 2049a6f7b9

View File

@ -1,4 +1,5 @@
#pragma once
#ifndef FUNC_H
#define FUNC_H
typedef int int32_t;
@ -10,4 +11,6 @@ void addNumbers(int32_t l, int32_t r);
void someHeaderImplementedFunction(int32_t a, int32_t b) {
doSomething(a, b);
}
}
#endif // FUNC_H