repo.or.cz
/
linux.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge tag 'trace-v6.13-rc7-2' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[linux.git]
/
drivers
/
firmware
/
efi
/
libstub
/
skip_spaces.c
blob
159fb4e456c639403889a6a23f15f5806ee8ea27
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
}