Files
CPP_Module_06/ex00/StrTo.hpp

21 lines
1.0 KiB
C++

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* StrTo.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/04/09 09:24:16 by adjoly #+# #+# */
/* Updated: 2025/04/09 10:19:50 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#pragma once
#include <string>
char _ToChar(const std::string &);
int _ToInt(const std::string &);
float _ToFloat(const std::string &);
double _ToDouble(const std::string &);