#ifndef LAB04_H_INCLUDED #define LAB04_H_INCLUDED #include #include #pragma once void print_in_hex(uint8_t byte); void print_in_hex(const void* data, size_t size); void print_in_binary(uint8_t byte); void print_in_binary(const void* data, size_t size); #endif // LAB04_H_INCLUDED