IRC SERVER
The goal of this project is to make you write your own IRC server.
functions.hpp File Reference
#include <string>
#include <vector>
Include dependency graph for functions.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

std::string itoa (int a)
 
std::vector< std::string > split (const std::string &str, const std::string &delimiters)
 
std::string to_lower (std::string str)
 
bool is_number (const std::string &s)
 

Function Documentation

◆ is_number()

bool is_number ( const std::string &  s)

◆ itoa()

std::string itoa ( int  a)
Here is the caller graph for this function:

◆ split()

std::vector<std::string> split ( const std::string &  str,
const std::string &  delimiters 
)
Here is the caller graph for this function:

◆ to_lower()

std::string to_lower ( std::string  str)