1
0
C_lib/utils/time_function.h

13 lines
326 B
C
Raw Normal View History

/* This header defines a struct for storing function timing information. */
#ifndef TIME_FUNCTION_H
#define TIME_FUNCTION_H
/* Struct used to store the results. */
typedef struct function_run_time {
/* Function name. */
char *name;
/* Length of run time. */
double time;
} function_run_time;
#endif /* TIME_FUNCTION_H */