blob: 24564af128fc3e98fb324fa605cdc5ed0cd0b311 (
plain)
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
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(int argc, char **argv)
{
int i = 0;
char *tok, *p_tok;
static char **arr;
int arrsiz = 1000;
static char *delim;
static char *str;
if (argc == 1) {
printf("automatic test ..\n");
delim = strdup(" ");
str = strdup("this is a simple string, which should be extracted to 12 strings");
} else if (argc != 4) {
fprintf(stderr, "usage: %s [ARR_SIZ] [DELIM] [STRING]\n", argv[0]);
exit(1);
} else {
arrsiz = atoi(argv[1]);
delim = strdup(argv[2]);
str = strdup(argv[3]);
}
arr = calloc(arrsiz, sizeof(char *));
p_tok = str;
while ( (tok = strsep(&p_tok, delim)) != NULL ) {
arr[i] = tok;
i++;
}
i = 0;
while ( arr[i] != NULL ) {
printf("ARRAY[%d]: %s\n", i, arr[i]);
i++;
}
if (argc == 1) {
if (i == 12) {
return 0;
} else return -1;
}
return 0;
}
|