」 feat: should have finished ex00

This commit is contained in:
2025-04-09 10:33:31 +02:00
parent 2b51c0baca
commit df7ffd0aeb
10 changed files with 198 additions and 29 deletions

20
ex00/StrTo.hpp Normal file
View File

@ -0,0 +1,20 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* 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 &);