#ifndef SRC_VALIDATORFUNCTIONS_HPP_
#define SRC_VALIDATORFUNCTIONS_HPP_
#include
#include
#undef max
#undef min
#include
#include
#include "HTTPValidator.hpp"
#include "util.hpp"
/**
* This file contains some validator functions that can be used to validate URL parameters.
*
* They covor common cases like checking for integer, non-empty, ..., so the user of this library
* does not need to write them on his own.
*/
namespace httpsserver {
/** Checks that a string is not empty. */
bool validateNotEmpty(std::string s);
/**
* Checks that the value is a positive integer (combine it with newValidateUnsignedIntegerMax if
* you have constraints regarding the size of that number
*/
bool validateUnsignedInteger(std::string s);
}
#endif