xref: /linux/drivers/firmware/efi/libstub/skip_spaces.c (revision 2cef30d7bd8b8fbddeb74e3753c29d4248c094e0)
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