Labs_Shishkina_Marina_ITb-4301/Lib_Stat/Lib_Stat.h
2024-12-26 15:23:34 +03:00

10 lines
204 B
C

#pragma once
#ifdef LIBSTAT_EXPORTS
#define LIBSTAT_API __declspec(dllexport)
#else
#define LIBSTAT_API __declspec(dllimport)
#endif
extern "C" LIBSTAT_API unsigned long long Fibonacci(unsigned int n);