Sign in
linux
/
linux
/
kernel
/
git
/
paulmck
/
linux-rcu
/
9bb4cbf4862dfa139f73e12912129e5b76baea1a
/
.
/
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
;
}