Csd 1.1.4; VERSION ${PROJECT_VERSION}
Loading...
Searching...
No Matches
lcsre.hpp
Go to the documentation of this file.
1
10#pragma once
11
12// #include <iosfwd> // for string
13#include <string> // for basic_string, operator==, operator<<
14
15namespace csd {
16
20
59 extern auto longest_repeated_substring(const char* sv, size_t len) -> std::string;
60
62
63} // namespace csd
auto longest_repeated_substring(const char *sv, size_t len) -> std::string
Find the longest repeated non-overlapping substring.
Definition csd.hpp:27