Home
last modified time | relevance | path

Searched refs:arg3type (Results 1 – 1 of 1) sorted by relevance

/mirbsd/src/usr.bin/awk/
Drun.c1229 int n, tempstat, arg3type; in split() local
1233 arg3type = ptoi(a[3]); in split()
1236 else if (arg3type == STRING) { /* split(str,arr,"string") */ in split()
1239 } else if (arg3type == REGEXPR) in split()
1252 if (arg3type == REGEXPR && strlen((char*)((fa*)a[2])->restr) == 0) { in split()
1254 arg3type = 0; in split()
1258 if (*s != '\0' && (strlen(fs) > 1 || arg3type == REGEXPR)) { /* reg expr */ in split()
1260 if (arg3type == REGEXPR) { /* it's ready already */ in split()
1352 if (a[2] != 0 && arg3type == STRING) { in split()