From 179fa413b047bede6e32109e2ce82437c5fb8d34 Mon Sep 17 00:00:00 2001 From: MenTaLguY Date: Mon, 16 Jan 2006 02:36:01 +0000 Subject: moving trunk for module inkscape (bzr r1) --- src/util/shared-c-string-ptr.cpp | 50 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 src/util/shared-c-string-ptr.cpp (limited to 'src/util/shared-c-string-ptr.cpp') diff --git a/src/util/shared-c-string-ptr.cpp b/src/util/shared-c-string-ptr.cpp new file mode 100644 index 000000000..cedf18df4 --- /dev/null +++ b/src/util/shared-c-string-ptr.cpp @@ -0,0 +1,50 @@ +/* + * Inkscape::Util::SharedCStringPtr - shared and immutable strings + * + * Authors: + * MenTaLguY + * + * Copyright (C) 2004 MenTaLguY + * + * Released under GNU GPL, read the file 'COPYING' for more information + */ + +#include +#include +#include "gc-core.h" +#include "util/shared-c-string-ptr.h" + +namespace Inkscape { + +namespace Util { + +SharedCStringPtr SharedCStringPtr::copy(char const *string) { + g_return_val_if_fail(string != NULL, SharedCStringPtr::coerce(NULL)); + + return SharedCStringPtr::copy(string, std::strlen(string)); +} + +SharedCStringPtr SharedCStringPtr::copy(char const *string, size_t len) { + g_return_val_if_fail(string != NULL, SharedCStringPtr::coerce(NULL)); + + char *dup=new (GC::ATOMIC) gchar[len+1]; + std::memcpy(dup, string, len); + dup[len] = '\000'; + + return SharedCStringPtr::coerce(dup); +} + +} + +} + +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 : -- cgit v1.2.3