1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-10-20 05:22:21 -04:00
polybar/include/utils/timer.hpp
2016-05-19 20:23:45 +02:00

10 lines
165 B
C++

#ifndef _UTILS_TIMER_HPP_
#define _UTILS_TIMER_HPP_
namespace timer
{
unsigned int seconds_to_microseconds(float seconds);
void sleep(float seconds);
}
#endif