style: implement clang-format styling parameters

This commit is contained in:
A.M. Rowsell 2026-09-22 02:06:49 -04:00
commit f2ce83335c
Signed by: amr
GPG key ID: E0879EDBDB0CA7B1
10 changed files with 462 additions and 547 deletions

View file

@ -6,18 +6,15 @@
*/
#ifndef STRFUNCS_HPP
#define STRFUNCS_HPP
#define STRFUNCS_HPP
#include <string>
#include <sstream>
#include <vector>
#include <iterator>
#include <sstream>
#include <string>
#include <vector>
template <typename Out>
void split(const std::string &s, char delim, Out result);
template <typename Out> void split(const std::string &s, char delim, Out result);
std::vector<std::string> split(const std::string &s, char delim);
#endif /* STRFUNCS_HPP */
#endif /* STRFUNCS_HPP */