All public logs

Jump to navigation Jump to search

Combined display of all available logs of RogueBasin. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 13:37, 28 December 2012 Bjorn talk contribs deleted page Bit manipulation (content was: "Bit manipulation will let you modify individual bits in a byte. Here's some code implementing bit manipulation in C++. <pre> void setbit(int& val, int bit) { val = val | (1 << bit); } void clearbit(int& val, int bit) { val = val &...")