1 // SPDX-License-Identifier: GPL-2.0
2 
3 #include <linux/ctype.h>
4 #include <linux/types.h>
5 
6 char *skip_spaces(const char *str)
7 {
8 	while (isspace(*str))
9 		++str;
10 	return (char *)str;
11 }
12