FatFS
IsSeparator
is only used within FatFS.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Arguments
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
FatFS
IsSeparator
IsSeparator macro
Syntax
Show:
Summary
Declaration
from
ff.c:54
#define
IsSeparator
(
c
)
(
(
c
)
==
'/'
||
(
c
)
==
'\\'
)
Arguments
Argument
c
Examples
References
from
examples
Code
Location
#define
IsSeparator
(
c
)
(
(
c
)
==
'/'
||
(
c
)
==
'\\'
)
ff.c:54
if
(
wc
<
' '
||
IsSeparator
(
wc
)
)
break
;
/* Break if end of the path or a separator is found */
ff.c:2873
while
(
IsSeparator
(
*
p
)
)
p
++
;
/* Skip duplicated separators if exist */
ff.c:2881
if
(
IsSeparator
(
c
)
)
{
/* Break if a separator is found */
ff.c:3010
while
(
IsSeparator
(
p
[
si
]
)
)
si
++
;
/* Skip duplicated separator if exist */
ff.c:3011
while
(
IsSeparator
(
*
path
)
)
path
++
;
/* Strip separators */
ff.c:3072
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out