Sign in
android-kvm
/
linux
/
3cd86a58f7734bf9cef38f6f899608ebcaa3da13
/
.
/
drivers
/
firmware
/
efi
/
libstub
/
skip_spaces.c
blob: a700b3c7f7d0697f756b4196bd50e8ce9fea59f5 [
file
] [
log
] [
blame
]
// SPDX-License-Identifier: GPL-2.0
#include
<linux/ctype.h>
#include
<linux/types.h>
char
*
skip_spaces
(
const
char
*
str
)
{
while
(
isspace
(*
str
))
++
str
;
return
(
char
*)
str
;
}