1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-keygen synced 2026-06-17 03:50:03 +02:00

Rename utils to string.

This commit is contained in:
Henrik Hautakoski 2020-01-09 06:32:13 +01:00
parent a2a964b24c
commit 76e3d11747
4 changed files with 6 additions and 6 deletions

View file

@ -13,11 +13,11 @@ find_package(OpenSSL 1.1 REQUIRED)
include_directories( ${OPENSSL_INCLUDE_DIR} )
add_executable( ${CMAKE_PROJECT_NAME}
src/string.cpp
src/ec.cpp
src/base58.cpp
src/checksum.cpp
src/WIF.cpp
src/utils.cpp
src/main.cpp
)

View file

@ -24,7 +24,7 @@
#include <algorithm>
#include <iostream>
#include <cstring>
#include "utils.h"
#include "string.h"
#include "base58.h"
#include "WIF.h"
#include "ec.h"

View file

@ -23,7 +23,7 @@
*/
#include <algorithm>
#include <cctype>
#include "utils.h"
#include "string.h"
std::vector<std::string> strsplit(const std::string& str, const std::string& delim) {

View file

@ -21,8 +21,8 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#ifndef UTILS_H
#define UTILS_H
#ifndef STRING_H
#define STRING_H
#include <vector>
#include <string>
@ -35,4 +35,4 @@ std::string& rtrim(std::string& str);
std::string& ltrim(std::string& str);
std::string& trim(std::string& str);
#endif /* UTILS_H */
#endif /* STRING_H */