sigismember.c\signal\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/signal/sigismember.c
blob: ab87d62249de487cdb1c0990ffa26acf60160ade (plain) (blame)
1
2
3
4
5
6
7
8
#include <signal.h>
int sigismember(const sigset_t *set, int sig)
{
	unsigned s = sig-1;
	if (s >= _NSIG-1) return 0;
	return !!(set->__bits[s/8/sizeof *set->__bits] & 1UL<<(s&8*sizeof *set->__bits-1));
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月09日 01:29:36 +0000

AltStyle によって変換されたページ (->オリジナル) /