MCPcopy Create free account
hub / github.com/ajkhoury/ReClassEx / GetBitsReverseString

Method GetBitsReverseString

ReClass/BitArray.h:57–68  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

55 }
56
57 char* GetBitsReverseString()
58 {
59 for (int i = 0; i < length; i++)
60 {
61 unsigned char bit = GetBit(i);
62 bits[i] = bit + '0'; // Get ascii representation of bit
63 }
64
65 bits[size - 1] = '\0';
66
67 return bits;
68 }
69
70 //void PrintBit(int index)
71 //{

Callers 1

DrawMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected