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