tool_time.h 512 B

1234567891011121314151617181920212223
  1. /**
  2. * @file tool_time.h
  3. * @brief 实现计时器
  4. * This file implements timer.
  5. * @version 0.1
  6. * @date 2021-09-17
  7. *
  8. * @copyright Copyright (c) 2021
  9. * \note Notice that this module is needed only during development, and should be disabled
  10. * when used in production.
  11. *
  12. * This module serves as utility module, don't waste time in reading it.
  13. */
  14. #ifndef __TOOL_TIME_H__
  15. #define __TOOL_TIME_H__
  16. #include "csocp_config.h"
  17. /** 获取运行时间 Get the elapsed time */
  18. c_real c_timer_elapsed();
  19. #endif