repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
dm writecache: add cond_resched to loop in persistent_memory_claim()
[linux/fpc-iii.git]
/
drivers
/
firmware
/
efi
/
libstub
/
skip_spaces.c
blob
a700b3c7f7d0697f756b4196bd50e8ce9fea59f5
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
}