Development tree reorganisation
[babeltrace.git] / lib / types / string.c
diff --git a/lib/types/string.c b/lib/types/string.c
deleted file mode 100644 (file)
index 578388d..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-/*
- * Common Trace Format
- *
- * Strings read/write functions.
- *
- * Copyright (c) 2010 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#include <ctf/ctf-types.h>
-#include <string.h>
-
-size_t string_copy(char *dest, const char *src)
-{
-       size_t len = strlen(src) + 1;
-
-       if (!dest)
-               goto end;
-       strcpy(dest, src);
-end:
-       return len * 8;
-}
This page took 0.023248 seconds and 4 git commands to generate.