Home
last modified time | relevance | path

Searched refs:IsSeparator (Results 1 – 1 of 1) sorted by relevance

/fatfs-latest/
Dff.c51 #define IsSeparator(c) ((c) == '/' || (c) == '\\') macro
2890 if (wc < ' ' || IsSeparator(wc)) break; /* Break if end of the path or a separator is found */
2898 while (IsSeparator(*p)) p++; /* Skip duplicated separators if exist */
3018 if (!IsSeparator(c) && c > ' ') return FR_INVALID_NAME;
3027 if (IsSeparator(c)) { /* Break if a separator is found */
3028 while (IsSeparator(p[si])) si++; /* Skip duplicated separator if exist */
3084 …if (!IsSeparator(*path) && (FF_STR_VOLUME_ID != 2 || !IsTerminator(*path))) { /* Without heading s…
3089 while (IsSeparator(*path)) path++; /* Strip separators */