MCPcopy Create free account
hub / github.com/apache/nuttx / strcmp

Function strcmp

include/string.h:312–323  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

310
311# if __has_builtin(__builtin_strcmp)
312builtin_function(strcmp) int strcmp(FAR const char *s1,
313 FAR const char *s2)
314{
315 if (__builtin_constant_p(s1) && __builtin_constant_p(s2))
316 {
317 return __builtin_strcmp(s1, s2);
318 }
319 else
320 {
321 return __orig_strcmp(s1, s2);
322 }
323}
324# endif
325
326# if __has_builtin(__builtin_strcpy)

Callers 15

allsyms_relocateFunction · 0.50
esp_ulp_ioctlFunction · 0.50
himem_chardev_unregisterFunction · 0.50
esp_ulp_ioctlFunction · 0.50
imx9_phy_isFunction · 0.50
set_conduit_methodFunction · 0.50
install_recoveryFunction · 0.50
dvfs_writeFunction · 0.50
set_conduit_methodFunction · 0.50
imxrt_phy_isFunction · 0.50
rtw_create_taskFunction · 0.50
arch_phy_irqFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected