20 lines
1015 B
C++
20 lines
1015 B
C++
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* ::: :::::::: */
|
||
|
/* log.hpp :+: :+: :+: */
|
||
|
/* +:+ +:+ +:+ */
|
||
|
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
|
||
|
/* +#+#+#+#+#+ +#+ */
|
||
|
/* Created: 2024/12/06 12:01:21 by adjoly #+# #+# */
|
||
|
/* Updated: 2024/12/06 13:12:13 by adjoly ### ########.fr */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
typedef unsigned int uint;
|
||
|
|
||
|
void log(std::string, std::string, std::string, std::string);
|