polybar/include/utils/timer.hpp

11 lines
165 B
C++
Raw Normal View History

2016-05-19 14:41:06 +00:00
#ifndef _UTILS_TIMER_HPP_
#define _UTILS_TIMER_HPP_
namespace timer
{
unsigned int seconds_to_microseconds(float seconds);
void sleep(float seconds);
}
#endif