mirror of
https://github.com/polybar/polybar.git
synced 2024-11-11 13:50:56 -05:00
10 lines
165 B
C++
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
|