]> Git Repo - linux.git/blob - drivers/firmware/efi/libstub/skip_spaces.c
ASoC: simple-card: Use snd_soc_of_parse_aux_devs()
[linux.git] / drivers / firmware / efi / libstub / skip_spaces.c
1 // SPDX-License-Identifier: GPL-2.0
2
3 #include <linux/ctype.h>
4 #include <linux/string.h>
5 #include <linux/types.h>
6
7 char *skip_spaces(const char *str)
8 {
9         while (isspace(*str))
10                 ++str;
11         return (char *)str;
12 }
This page took 0.033238 seconds and 4 git commands to generate.