home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / SLAX 6.0.8 / slax-6.0.8.iso / slax / base / 006-devel.lzm / usr / include / gutenprint / path.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-03-15  |  1.6 KB  |  58 lines

  1. /*
  2.  * "$Id: path.h,v 1.1 2004/09/17 18:38:01 rleigh Exp $"
  3.  *
  4.  *   libgimpprint path functions header
  5.  *
  6.  *   Copyright 1997-2000 Michael Sweet (mike@easysw.com),
  7.  *    Robert Krawitz (rlk@alum.mit.edu) and Michael Natterer (mitch@gimp.org)
  8.  *   Copyright 2002 Roger Leigh (rleigh@debian.org)
  9.  *
  10.  *   This program is free software; you can redistribute it and/or modify it
  11.  *   under the terms of the GNU General Public License as published by the Free
  12.  *   Software Foundation; either version 2 of the License, or (at your option)
  13.  *   any later version.
  14.  *
  15.  *   This program is distributed in the hope that it will be useful, but
  16.  *   WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  17.  *   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  18.  *   for more details.
  19.  *
  20.  *   You should have received a copy of the GNU General Public License
  21.  *   along with this program; if not, write to the Free Software
  22.  *   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  23.  */
  24.  
  25. /**
  26.  * @file gutenprint/path.h
  27.  * @brief Simple directory path functions.
  28.  */
  29.  
  30. /*
  31.  * This file must include only standard C header files.  The core code must
  32.  * compile on generic platforms that don't support glib, gimp, gtk, etc.
  33.  */
  34.  
  35. #ifndef GUTENPRINT_PATH_H
  36. #define GUTENPRINT_PATH_H
  37.  
  38. #ifdef __cplusplus
  39. extern "C" {
  40. #endif
  41.  
  42.  
  43. extern stp_list_t *stp_path_search(stp_list_t *dirlist,
  44.                    const char *suffix);
  45.  
  46. extern void stp_path_split(stp_list_t *list,
  47.                const char *path);
  48.  
  49.  
  50. #ifdef __cplusplus
  51.   }
  52. #endif
  53.  
  54. #endif /* GUTENPRINT_PATH_H */
  55. /*
  56.  * End of "$Id: path.h,v 1.1 2004/09/17 18:38:01 rleigh Exp $".
  57.  */
  58.