mirror of
https://github.com/xtjoeytx/GServer-v2.git
synced 2026-05-11 10:19:51 -04:00
17 lines
352 B
C++
17 lines
352 B
C++
#ifndef UTILITIES_STRINGUTILS_H
|
|
#define UTILITIES_STRINGUTILS_H
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include "CString.h"
|
|
|
|
namespace utilities
|
|
{
|
|
std::string retokenizeArray(const std::vector<CString>& triggerData, int start_idx = 0);
|
|
CString retokenizeCStringArray(const std::vector<CString>& triggerData, int start_idx = 0);
|
|
}
|
|
|
|
#endif
|