Hello, i cant find info about ->
Code:
#define get_bit(%2,%1) (%1 & (1<<(%2&31)))
#define set_bit(%2,%1) (%1 |= (1<<(%2&31)))
#define rem_bit(%2,%1) (%1 &= ~(1 <<(%2&31)))
what these definitions mean ? Can some one help me to understand what does rem_bit mean in this code?
Code:
public csgo_reset_data()
{
for (new i = 1; i <= MAX_PLAYERS; i++) rem_bit(i, loaded);
nvault_prune(operations, 0, get_systime() + 1);
}
public client_disconnected(id)
rem_bit(id, loaded);
Thanks.