We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b9faf6 commit e1d6500Copy full SHA for e1d6500
api/Print.cpp
@@ -26,6 +26,11 @@
26
using namespace arduino;
27
28
// Public Methods //////////////////////////////////////////////////////////////
29
+#ifdef __VERY_MINIMAL_LIBC__
30
+// These functions should be implemented in the user code (C++)
31
+bool isnan(float x);
32
+bool isinf(float x);
33
+#endif
34
35
/* default implementation: may be overridden */
36
size_t Print::write(const uint8_t *buffer, size_t size)
api/String.cpp
@@ -26,6 +26,12 @@
#include <float.h>
+long atol(char* c);
+float atof(char* c);
+
namespace arduino {
37
/*********************************************/
0 commit comments