Symbol: whitespace
lib/libwrap/options.c
176
value += strspn(value, whitespace);
lib/libwrap/options.c
180
value += strspn(value, whitespace);
lib/libwrap/options.c
439
if (*(var_value = value + strcspn(value, whitespace)))
sys/arch/acorn32/stand/lib/srt1.c
101
if (whitespace(args[i])) {
sys/arch/acorn32/stand/lib/srt1.c
125
if (whitespace(args[i + 1])) {
sys/arch/acorn32/stand/lib/srt1.c
42
static int whitespace(char);
sys/arch/i386/stand/dosboot/doscommain.c
45
static int whitespace(char);
sys/arch/i386/stand/dosboot/doscommain.c
74
if (whitespace(PSP->cmd[i])) {
sys/arch/i386/stand/dosboot/doscommain.c
95
if (whitespace(PSP->cmd[i + 1])) {
sys/arch/sgimips/stand/haudfw/haudfw.c
148
char *field = strtok(line_copy, whitespace);
sys/arch/sgimips/stand/haudfw/haudfw.c
149
for (int i = 0; field != NULL; i++, field = strtok(NULL, whitespace)) {
sys/arch/sgimips/stand/haudfw/haudfw.c
213
if (strspn(line, whitespace) == strlen(line)) {
sys/arch/sgimips/stand/haudfw/haudfw.c
239
char *word_str = strtok(line, whitespace);
sys/arch/sgimips/stand/haudfw/haudfw.c
265
word_str = strtok(NULL, whitespace);
sys/arch/sgimips/stand/haudfw/haudfw.c
71
const char whitespace[] = " \t\r\n";
usr.sbin/tcpdchk/inetcf.c
138
service = strtok(buf, whitespace); /* service */
usr.sbin/tcpdchk/inetcf.c
142
strtok((char *) 0, whitespace); /* endpoint */
usr.sbin/tcpdchk/inetcf.c
143
protocol = strtok((char *) 0, whitespace);
usr.sbin/tcpdchk/inetcf.c
144
(void) strtok((char *) 0, whitespace); /* wait */
usr.sbin/tcpdchk/inetcf.c
145
if ((user = strtok((char *) 0, whitespace)) == 0)
usr.sbin/tcpdchk/inetcf.c
150
if ((path = strtok((char *) 0, whitespace)) == 0)
usr.sbin/tcpdchk/inetcf.c
163
if ((path = strtok((char *) 0, whitespace)) == 0)
usr.sbin/tcpdchk/inetcf.c
166
if ((arg0 = strtok((char *) 0, whitespace)) == 0) {
usr.sbin/tcpdchk/inetcf.c
177
if ((arg0 = strtok((char *) 0, whitespace)) == 0) {
usr.sbin/tcpdchk/inetcf.c
182
if ((arg1 = strtok((char *) 0, whitespace)) == 0)
usr.sbin/tcpdchk/inetcf.c
76
static char whitespace[] = " \t\r\n";