Home
last modified time | relevance | path

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

/fatfs-2.7.6/
Dff.c51 #define IsSeparator(c) ((c) == '/' || (c) == '\\') macro
2821 if (wc < ' ' || IsSeparator(wc)) break; /* Break if end of the path or a separator is found */
2829 while (IsSeparator(*p)) p++; /* Skip duplicated separators if exist */
2948 if (!IsSeparator(c) && c > ' ') return FR_INVALID_NAME;
2957 if (IsSeparator(c)) { /* Break if a separator is found */
2958 while (IsSeparator(p[si])) si++; /* Skip duplicated separator if exist */
3014 …if (!IsSeparator(*path) && (FF_STR_VOLUME_ID != 2 || !IsTerminator(*path))) { /* Without heading s…
3019 while (IsSeparator(*path)) path++; /* Strip separators */