File: psplit.c

package info (click to toggle)
yodl 4.05.02-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,724 kB
  • sloc: ansic: 7,803; perl: 683; cpp: 570; sh: 411; xml: 190; makefile: 163
file content (23 lines) | stat: -rw-r--r-- 569 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include "process.ih"

char **p_split(Process *pp)
{
    size_t idx = 0;
    char **argv = new_memory(1, sizeof(char *));    /* one extra -> NULL    */
    char *cp =                                      /* get the first arg    */
          strtok(pp->d_cmd, " \t\n");

    while (cp)
    {
        argv[idx++] = cp;
        new_size(&argv, idx + 1, idx, sizeof(char *));
        cp = strtok(NULL, " \t\n");
    }

    if (!idx)
        if (message_show(MSG_CRIT))
            message("%s: Missing program name", pp->d_fname);

    argv[idx] = NULL;
    return argv;
}