14 lines
235 B
C++
14 lines
235 B
C++
/*
|
|
* File: StringHelper.h
|
|
* Description: Provides functions to help with string manipulation.
|
|
* Author: Trenser
|
|
* Created: 10-04-2026
|
|
*/
|
|
#pragma once
|
|
#include <string>
|
|
|
|
namespace util
|
|
{
|
|
int extractNumber(const std::string&);
|
|
}
|