Updated Spanish translation
[anjuta-git-plugin.git] / plugins / profiler / string-utils.h
blobb9f4138efbe8a7fa6fe298928598442a93c67b32
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3 * string-utils.h
4 * Copyright (C) James Liggett 2006 <jrliggett@cox.net>
5 *
6 * string-utils.h is free software.
7 *
8 * You may redistribute it and/or modify it under the terms of the
9 * GNU General Public License, as published by the Free Software
10 * Foundation; either version 2, or (at your option) any later version.
12 * plugin.c is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
15 * See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with plugin.c. See the file "COPYING". If not,
19 * write to: The Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor,
21 * Boston, MA 02110-1301, USA.
24 #ifndef _STRING_UTILS_H
25 #define _STRING_UTILS_H
27 #include <glib.h>
29 gchar *read_to_whitespace(gchar *buffer, int *end_pos, int start_pos);
30 gchar *read_to_delimiter(gchar *buffer, gchar *delimiter);
31 gchar *strip_whitespace(gchar *buffer);
33 #endif