bitarray

需要干一些事情, 所以需要这个东西。

#define setbit(buff, index, data) \
{ \
	if ((data)) { \
		((buff)[(index)>>3]) |= 1 << ((index) & 7); \
	} else { \
		((buff)[(index)>>3]) &= ~(1 << ((index) & 7)); \
	} \
}

#define getbit(buff, index) ( (((buff)[(index)>>3]) >> ((index) & 7)) & 1 )

发表评论

注意 - 你可以用以下 HTML tags and attributes:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

:wink: :twisted: :roll: :oops: :mrgreen: :lol: :idea: :evil: :cry: :arrow: :?: :-| :-x :-o :-P :-D :-? :) :( :!: 8-O 8)

本文链接:https://twd2.me/archives/5870QrCode