mirror of
https://github.com/D4C1-Labs/Flipper-ARF.git
synced 2026-03-30 20:15:44 +00:00
24 lines
411 B
C
24 lines
411 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct Profiler Profiler;
|
|
|
|
Profiler* profiler_alloc(void);
|
|
|
|
void profiler_free(Profiler* profiler);
|
|
|
|
void profiler_prealloc(Profiler* profiler, const char* key);
|
|
|
|
void profiler_start(Profiler* profiler, const char* key);
|
|
|
|
void profiler_stop(Profiler* profiler, const char* key);
|
|
|
|
void profiler_dump(Profiler* profiler);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|