delete comments
parent
0da1e5fcbc
commit
388d892263
|
@ -24,7 +24,9 @@ byte* AF_address(byte* f) {
|
||||||
|
|
||||||
// Print bytes from address to address+size
|
// Print bytes from address to address+size
|
||||||
int AF_print_bytes(byte* a, int size) {
|
int AF_print_bytes(byte* a, int size) {
|
||||||
for (int i = 0; i < size; ++i) printf("%02X ", *(a + i));
|
for (int i = 0; i < size; ++i) {
|
||||||
|
printf("%02X ", *(a + i));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// Get any function size
|
// Get any function size
|
||||||
int AF_size(byte* f) {
|
int AF_size(byte* f) {
|
||||||
|
|
Loading…
Reference in New Issue