Implement VFS syscalls
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m29s
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m29s
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
|
||||
bool path_validate_char (char ch) {
|
||||
return ((ch >= '0' && ch <= '9') || (ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z') ||
|
||||
(ch == '_') || (ch == '-') || (ch == '/'));
|
||||
(ch == '_') || (ch == '-') || (ch == '/') || (ch == '.'));
|
||||
}
|
||||
|
||||
bool path_validate (const char* path) {
|
||||
|
||||
Reference in New Issue
Block a user