atomic_flag_clear
is defined in the stdatomic.h
header file and serves to change the value of an atomic flag to false
.
The syntax for the function declaration is as follows:
atomic_flag_clear
takes a single, mandatory parameter which is a pointer to an atomic_flag
object.
atomic_flag_clear
does not return anything.