X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=lib%2Ftypes%2Fstring.c;fp=lib%2Ftypes%2Fstring.c;h=0000000000000000000000000000000000000000;hp=578388d15936065a242d3a4e0b30e6be09072c2d;hb=7172902caa455601e0d7429378e898eb12bbb2ba;hpb=d17081340c79b300d190d39f29447b9002cf0673 diff --git a/lib/types/string.c b/lib/types/string.c deleted file mode 100644 index 578388d1..00000000 --- a/lib/types/string.c +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Common Trace Format - * - * Strings read/write functions. - * - * Copyright (c) 2010 Mathieu Desnoyers - * - * 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 -#include - -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; -}