From 6349451c2a0cab923aa81ad7818f420eaf7475e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Hannappel?= <juergen.hannappel@desy.de> Date: Wed, 7 Jul 2021 16:48:01 +0200 Subject: [PATCH] add function to create a aspao-string from a c string --- common/cpp/include/asapo/common/common_c.h | 1 + common/cpp/src/common/common_c_glue.cpp | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/common/cpp/include/asapo/common/common_c.h b/common/cpp/include/asapo/common/common_c.h index 54a6f6b4a..932e9c030 100644 --- a/common/cpp/include/asapo/common/common_c.h +++ b/common/cpp/include/asapo/common/common_c.h @@ -20,6 +20,7 @@ void* asapo_new_handle(); void asapo_error_explain(const AsapoErrorHandle error, char* buf, size_t max_size); AsapoBool asapo_is_error(AsapoErrorHandle err); +AsapoStringHandle asapo_string_create(const char* str); const char* asapo_string_c_str(const AsapoStringHandle str); size_t asapo_string_size(const AsapoStringHandle str); diff --git a/common/cpp/src/common/common_c_glue.cpp b/common/cpp/src/common/common_c_glue.cpp index 626deb835..f1903f70c 100644 --- a/common/cpp/src/common/common_c_glue.cpp +++ b/common/cpp/src/common/common_c_glue.cpp @@ -32,6 +32,12 @@ AsapoHandle* handle_or_null(AsapoHandle* handle, AsapoErrorHandle* error, asapo: extern "C" { + AsapoStringHandle asapo_string_create(const char* str) { + return AsapoStringHandle(new std::string(str)); + } + + + //! free handle memory, set handle to NULL /// \param[in] pointer to an ASAPO handle void asapo_free_handle(void** handle) { -- GitLab