-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.c
160 lines (128 loc) · 3.47 KB
/
main.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <inttypes.h>
int valueInListStr(char*,char*);
int valueNotInListStr(char*,char*);
int valueInListInt(long long int , char*);
int valueNotInListInt(long long int , char*);
int main()
{
char *string = NULL;
string = "9930|9998|9999";
int x = 10000;
/* **********************
* Examples
*
* valueNotInListStr("10000",string);
* valueInListStr("10000",string);
*
*
* valueNotInListInt(x,string);
* valueInListInt(10000,string);
*/
return valueNotInListStr("10000",string);
}
/* ****************************************************
* Author: Martin
* Date: 14/09/2017
* ***************************************************/
int valueInListStr(char *value, char *ValueList)
{
if(value == NULL || ValueList == NULL)
return -1;
const char *sep = "|";
char *tok = NULL;
char *ValueListCopy = (char*) malloc(strlen(ValueList)*sizeof(char)+1);
strcpy(ValueListCopy,ValueList);
tok = strtok(ValueListCopy,sep);
if(tok==NULL)
{ free(ValueListCopy);
return -1;
}
while(tok)
{ if(strcmp(value,tok)==0)
{ free(ValueListCopy);
return 1;
}
tok = strtok (NULL, sep);
}
free(ValueListCopy);
return 0;
}
/* ****************************************************/
int valueNotInListStr(char *value, char *ValueList)
{
if(value == NULL || ValueList == NULL)
return -1;
const char *sep = "|";
char *tok = NULL;
char *ValueListCopy = (char*) malloc(strlen(ValueList)*sizeof(char)+1);
strcpy(ValueListCopy,ValueList);
tok = strtok(ValueListCopy,sep);
if(tok==NULL)
{ free(ValueListCopy);
return -1;
}
while(tok)
{ if(strcmp(value,tok)==0)
{ free(ValueListCopy);
return 0;
}
tok = strtok (NULL, sep);
}
free(ValueListCopy);
return 1;
}
/* ****************************************************/
int valueInListInt(long long int value, char *ValueList)
{
if(ValueList == NULL)
return -1;
const char *sep = "|";
char *tok = NULL;
long long int tok_int=0;
char *ValueListCopy = (char*) malloc(strlen(ValueList)*sizeof(char)+1);
strcpy(ValueListCopy,ValueList);
tok = strtok(ValueListCopy,sep);
if(tok==NULL)
{ free(ValueListCopy);
return -1;
}
while(tok)
{ tok_int=strtoll(tok, NULL, 10);
if(value==tok_int)
{ free(ValueListCopy);
return 1;
}
tok = strtok (NULL, sep);
}
free(ValueListCopy);
return 0;
}
/* ****************************************************/
int valueNotInListInt(long long int value, char *ValueList)
{
if(ValueList == NULL)
return -1;
const char *sep = "|";
char *tok = NULL;
long long int tok_int=0;
char *ValueListCopy = (char*) malloc(strlen(ValueList)*sizeof(char)+1);
strcpy(ValueListCopy,ValueList);
tok = strtok(ValueListCopy,sep);
if(tok==NULL)
{ free(ValueListCopy);
return -1;
}
while(tok)
{ tok_int=strtoll(tok, NULL, 10);
if(value==tok_int)
{ free(ValueListCopy);
return 0;
}
tok = strtok (NULL, sep);
}
free(ValueListCopy);
return 1;
}