summaryrefslogtreecommitdiffstats
path: root/strpbrk.c
blob: a292a6ea4b271d570df6e8538589892c3c42f98c (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
50
51
52
53
54
55
56
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

char **redir_chop(const char *, const char);

/* chops a line into 2 string that are seperated by redir_delim  */
char **redir_chop(const char *line, const char redir_delim)
{
    if (!line)
        return NULL;

    const char *delim = &redir_delim;

    char *pipe_redir = strpbrk(line, delim);
    if (pipe_redir == NULL)
        return NULL;

    size_t redir_delta = pipe_redir - line;
    char **ret = (char **) malloc(sizeof(char *) * 2);
    ret[0] = (char *) malloc(sizeof(char) * 256 * 2);
    ret[1] = ret[0] + 256;

    char *former = ret[0];
    char *latter = ret[1];

    strncpy(former, line, redir_delta);
    former[redir_delta] ='\0';

    /* delete spaces at the end of former string */
    int i = strlen(former) - 1;
    while (former[i] == ' ')
        former[i--] = '\0';

    /* skip spaces in latter string and then copy over */
    int j = redir_delta;
    while (line[++j] == ' ')
        ;
    strncpy(latter, line+j, (line + strlen(line)) - pipe_redir);

    return ret;
}

int main(int argc, char *argv[])
{
    const char *line = "ls -1 -al > filename.txt";
    char **chopped = redir_chop(line, '>');
 
    printf("former string: \"%s\"\n", chopped[0]);
    printf("latter string: \"%s\"\n", chopped[1]);

    free(chopped);
    
    return 0;
}