delete comments

main
serr 2025-01-15 18:43:58 +03:00
parent 0da1e5fcbc
commit 388d892263
1 changed files with 3 additions and 1 deletions

View File

@ -24,7 +24,9 @@ byte* AF_address(byte* f) {
// Print bytes from address to address+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
int AF_size(byte* f) {