brintos

brintos / linux-shallow public Read only

0
0
Text · 206 B · 159fb4e Raw
13 lines · c
1// SPDX-License-Identifier: GPL-2.02 3#include <linux/ctype.h>4#include <linux/string.h>5#include <linux/types.h>6 7char *skip_spaces(const char *str)8{9	while (isspace(*str))10		++str;11	return (char *)str;12}13