csleeptimer/echo.c

8 lines
110 B
C

#include <stdbool.h>
#include <stdio.h>
bool echo(void) {
printf("Timer has ran out!\n");
return true;
}