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