~ubuntu-branches/ubuntu/trusty/pcmanfm/trusty-proposed

« back to all changes in this revision

Viewing changes to src/exo/exo-string.h

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Lee
  • Date: 2008-09-26 10:19:20 UTC
  • mfrom: (4.1.5 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080926101920-cfldybkmwgwrtv9u
Tags: 0.5-3
* Correct spellings,  03_correct_spelling.dpatch (Closes:498794) 
* Code in some files are taken from other projects, added these
  informations into copyright file. (Closes:499678)
* Applied 04_defaut_terminal.dpatch to support x-terminal-emulator
  alternative. (Closes:497494) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: exo-string.h 47 2006-01-30 02:32:10Z pcmanx $ */
 
2
/*-
 
3
 * Copyright (c) 2004 os-cillation e.K.
 
4
 *
 
5
 * Written by Benedikt Meurer <benny@xfce.org>.
 
6
 *
 
7
 * This library is free software; you can redistribute it and/or
 
8
 * modify it under the terms of the GNU Library General Public
 
9
 * License as published by the Free Software Foundation; either
 
10
 * version 2 of the License, or (at your option) any later version.
 
11
 *
 
12
 * This library 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.  See the GNU
 
15
 * Library General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU Library General Public
 
18
 * License along with this library; if not, write to the
 
19
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
20
 * Boston, MA 02111-1307, USA.
 
21
 */
 
22
 
 
23
/* 2006.01.23 modified by Hong Jen Yee (PCMan) to used in PCMan File Manager */
 
24
 
 
25
#ifndef __EXO_STRING_H__
 
26
#define __EXO_STRING_H__
 
27
 
 
28
#include <glib.h>
 
29
 
 
30
G_BEGIN_DECLS;
 
31
 
 
32
gchar    *exo_str_elide_underscores  (const gchar *text);
 
33
 
 
34
gboolean  exo_str_is_equal           (const gchar *a,
 
35
                                      const gchar *b);
 
36
 
 
37
gchar   **exo_strndupv               (gchar      **strv,
 
38
                                      gint         num);
 
39
 
 
40
G_END_DECLS;
 
41
 
 
42
#endif /* !__EXO_STRING_H__ */