-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreminder.c
88 lines (84 loc) · 1.41 KB
/
reminder.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
//libraries
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/ptrace.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <signal.h>
#include <dirent.h>
#include <sys/dir.h>
#include <pwd.h>
#include <grp.h>
#include <time.h>
#include <locale.h>
#include<sys/utsname.h>
#include "declarations.h"
int reminder()
{
if(!strncmp(cmd,"remindme ",9))
{
remindflag=1;
char* r;//for token
r=strtok(cmd," , ");
r=strtok(NULL," , ");//r=2nd argument
//checks 2nd arg is int or not
int no=0;
for(int i=0;i<strlen(r);i++)
{
if(r[i]>47 && r[i]<58)
no=1;
else
{
no=0;
break;
}
}
if(no)
{
char re[100];
strcpy(re,"sleep");
sprintf(re,"%s %s &",re,r);//form sleep command with &
strcpy(cmd,re);
//copy msg
r=strtok(NULL," , ");//3rd argument
if(r==NULL)
{
printf("provide reminder msg\n");
return 0;
}
else
{
strcpy(remindmsg,r);
//printf("%s\n\n",remindmsg);
r=strtok(NULL," , ");
while(r!=NULL)
{
strcat(remindmsg," ");
strcat(remindmsg,r);
r=strtok(NULL," , ");
}
//printf("%s\n",remindmsg);
//printf("%s\n",cmd);
process_cmd();
execute();
//free(buf);
}
}
else
{
printf("argument expected to be int\n");
return 0;
}
free(r);
}
else
{
printf("no arguments given\n");
return 0;
}
return 0;
}