Data.hpp 1.1 KB

1234567891011121314151617181920212223242526
  1. /* ************************************************************************** */
  2. /* */
  3. /* ::: :::::::: */
  4. /* Data.hpp :+: :+: :+: */
  5. /* +:+ +:+ +:+ */
  6. /* By: bchanot <bchanot@42.fr> +#+ +:+ +#+ */
  7. /* +#+#+#+#+#+ +#+ */
  8. /* Created: 2026/01/05 13:57:51 by bchanot #+# #+# */
  9. /* Updated: 2026/01/05 14:44:51 by bchanot ### ########.fr */
  10. /* */
  11. /* ************************************************************************** */
  12. #ifndef DATA_HPP
  13. # define DATA_HPP
  14. # include <iostream>
  15. # include <string>
  16. # include <stdint.h>
  17. typedef struct s_data
  18. {
  19. uintptr_t data;
  20. } Data;
  21. #endif /* ************************************************************ DATA_H */