SPIFFS/Error.h
Go to the documentation of this file.
1 
23 #pragma once
24 
25 #include "../Types.h"
26 
27 namespace IFS
28 {
29 namespace SPIFFS
30 {
31 inline bool isSpiffsError(int err)
32 {
33  return err <= -10000;
34 }
35 
36 String spiffsErrorToStr(int err);
37 } // namespace SPIFFS
38 } // namespace IFS
String spiffsErrorToStr(int err)
The String class.
Definition: WString.h:136
bool isSpiffsError(int err)
Definition: SPIFFS/Error.h:31
Definition: DirectoryTemplate.h:36