basin/include/basin/profile.h

13 lines
205 B
C
Raw Normal View History

2019-05-02 08:09:24 +00:00
#ifndef BASIN_PROFILE_H_
#define BASIN_PROFILE_H_
2017-01-01 09:39:37 +00:00
void beginProfilerSection(char* name);
void endProfilerSection(char* name);
void printProfiler();
void clearProfiler();
2019-05-02 08:09:24 +00:00
#endif /* BASIN_PROFILE_H_ */