1 2 3 4 5 6 7 8 9
#ifndef _RECHARGE_H_ #define _RECHARGE_H_ #include <stdbool.h> bool is_charged(); void recharge(double timer, const char *icon); #endif