MCPcopy Create free account
hub / github.com/cpputest/cpputest / IsNanImplementation

Function IsNanImplementation

src/Platforms/Keil/UtestPlatform.cpp:170–177  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

168 void* (*PlatformSpecificMemset)(void*, int, size_t) = memset;
169
170 static int IsNanImplementation(double d)
171 {
172# ifdef __MICROLIB
173 return 0;
174# else
175 return isnan(d);
176# endif
177 }
178
179 static int IsInfImplementation(double d)
180 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected