recreate project as DLL
This commit is contained in:
17
test_cases/backwards.h
Normal file
17
test_cases/backwards.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#pragma once
|
||||
extern "C" {
|
||||
/**
|
||||
* Raises @num @cnt times
|
||||
*
|
||||
* @param num
|
||||
* @param cnt
|
||||
*/
|
||||
uint32_t _declspec(dllexport) _loop(uint32_t num, uint32_t cnt);
|
||||
|
||||
/**
|
||||
* Computes factorial
|
||||
*
|
||||
* @param x
|
||||
*/
|
||||
uint32_t _declspec(dllexport) _tail_recursion(uint32_t x);
|
||||
}
|
||||
Reference in New Issue
Block a user