table of contents
avr_string(3avr) | avr-libc | avr_string(3avr) |
NAME¶
avr_string - <string.h>: Strings
SYNOPSIS¶
Macros¶
#define _FFS(x)
Detailed Description¶
#include <string.h>
The string functions perform string operations on NULL terminated strings.
Note
Macro Definition Documentation¶
#define _FFS(x)¶
This macro finds the first (least significant) bit set in the input value.
This macro is very similar to the function ffs() except that it evaluates its argument at compile-time, so it should only be applied to compile-time constant expressions where it will reduce to a constant itself. Application of this macro to expressions that are not constant at compile-time is not recommended, and might result in a huge amount of code generated.
Returns
Author¶
Generated automatically by Doxygen for avr-libc from the source code.
Fri Nov 24 2023 23:59:10 | Version 2.0.0 |