| 1234567891011121314151617181920212223242526 |
- /* ************************************************************************** */
- /* */
- /* ::: :::::::: */
- /* Data.hpp :+: :+: :+: */
- /* +:+ +:+ +:+ */
- /* By: bchanot <bchanot@42.fr> +#+ +:+ +#+ */
- /* +#+#+#+#+#+ +#+ */
- /* Created: 2026/01/05 13:57:51 by bchanot #+# #+# */
- /* Updated: 2026/01/05 14:44:51 by bchanot ### ########.fr */
- /* */
- /* ************************************************************************** */
- #ifndef DATA_HPP
- # define DATA_HPP
- # include <iostream>
- # include <string>
- # include <stdint.h>
- typedef struct s_data
- {
- uintptr_t data;
- } Data;
- #endif /* ************************************************************ DATA_H */
|