X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fyaz%2Ftpath.h;h=44e064a0cc283c8b4409fc48d2652586d820f4b3;hb=bab540a6816b1ae07a834075e0c71d0f160565e4;hp=cda60cbb9ef178bf6eea7705b9c76d9b79186dca;hpb=964580242e2e0b2e570f652afa58bfb90ad0bb5e;p=yaz-moved-to-github.git diff --git a/include/yaz/tpath.h b/include/yaz/tpath.h index cda60cb..44e064a 100644 --- a/include/yaz/tpath.h +++ b/include/yaz/tpath.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 1995-2006, Index Data + * Copyright (c) 1995-2007, Index Data * All rights reserved. * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: @@ -24,7 +24,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -/* $Id: tpath.h,v 1.12 2006-10-09 21:02:41 adam Exp $ */ +/* $Id: tpath.h,v 1.14 2007-01-03 08:42:14 adam Exp $ */ /** * \file tpath.h @@ -41,11 +41,25 @@ YAZ_BEGIN_CDECL /** \brief checks whether path is absolute \param path path to checked - - Returns 1 if path is absolute, 0 if relative + \retval 1 path is absolute + \retval 0 path is relative */ YAZ_EXPORT int yaz_is_abspath (const char *path); +/** \brief get next path component in filepath + \param path_p pointer to path (updated to "next" entry if any) + \param comp upon pointer to component (if component is found) + \retval 0 no component found (and no more componennts) + \retval >0 length of component (length of *comp) + + A filepath has components separted by colon. For example + /usr/lib/modules:c:/my:/:lib + which has these components + "/usr/lib/modules", "c:/my", "/", "lib" +*/ +YAZ_EXPORT size_t yaz_filepath_comp(const char **path_p, const char **comp); + + /** \brief resolve file on path \param fname "short" filename (without path) \param path the path (dir1:dir2,..) - ala Unix @@ -86,7 +100,8 @@ YAZ_EXPORT FILE *yaz_path_fopen(const char *path, const char *fname, /** \brief closes file \param f FILE handle - Returns -1 on failure; 0 on success + \retval -1 on failure + \retval 0 on success */ YAZ_EXPORT int yaz_fclose(FILE *f);