Babel  1
The voip software that only works on your local network
Loading...
Searching...
No Matches
ToString.cpp
Go to the documentation of this file.
1/*
2** EPITECH PROJECT, 2024
3** rtype (Workspace)
4** File description:
5** ToString.cpp
6*/
7
14#include "Recoded/ToString.hpp"
15
22const std::string Recoded::myToString(bool value)
23{
24 if (value) {
25 return "true";
26 }
27 return "false";
28};
Provides custom string conversion functions as alternatives to std::to_string.
const std::string myToString(bool value)
Converts a boolean value to its string representation.
Definition ToString.cpp:22