From c545bfbca59bfe2cdeba40c4965abe66f2052254 Mon Sep 17 00:00:00 2001 From: serr Date: Wed, 15 Jan 2025 19:26:36 +0300 Subject: [PATCH] update comments --- analysis_function.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/analysis_function.h b/analysis_function.h index f6d19ca..2840e0b 100644 --- a/analysis_function.h +++ b/analysis_function.h @@ -25,7 +25,8 @@ byte* AF_address(byte* f) { return real_address; } -// Print bytes from address to address+size (Use AF_address() to get function ptr) +// Print bytes from address to address+size +// (Use AF_address() to get func ptr and AF_size() to get func size) int32_t AF_print_bytes(byte* a, int32_t size) { for (int32_t i = 0; i < size; ++i) { printf("%02X ", *(a + i));