diff options
Diffstat (limited to 'src/utils.c')
| -rw-r--r-- | src/utils.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/utils.c b/src/utils.c index 832cc9b..80149d5 100644 --- a/src/utils.c +++ b/src/utils.c @@ -1,4 +1,6 @@ #include "utils.h" +#include <stdio.h> +#include <unistd.h> void mkdirp(char *path){ char buffer[255]="mkdir -p "; @@ -14,4 +16,15 @@ unsigned char dir_exists(char *path){ return 1; } return 0; -}
\ No newline at end of file +} + +void askforbreak(char *break_file){ + FILE * file; + file = fopen(break_file, "r"); + while(file){ + printf("I am doing a break for %ds\n", BREAK_DURATION); + sleep(BREAK_DURATION); + fclose(file); + file = fopen(break_file, "r"); + } +} |
