X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=include%2Fyaz%2Ftpath.h;h=ae7f7c27ce21a01fbae4e8fd36b0543e2ca2271f;hp=05fc282227bf10193b414202f52057757953ce3c;hb=6fda497bc3df847077e0d72f487c2251df522715;hpb=b2a7266c8dec5c194057670e0591b9d2cdbd3591 diff --git a/include/yaz/tpath.h b/include/yaz/tpath.h index 05fc282..ae7f7c2 100644 --- a/include/yaz/tpath.h +++ b/include/yaz/tpath.h @@ -23,7 +23,7 @@ * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE * OF THIS SOFTWARE. * - * $Id: tpath.h,v 1.10 2006-04-26 10:01:31 adam Exp $ + * $Id: tpath.h,v 1.11 2006-05-02 12:11:08 adam Exp $ * */ /** @@ -62,26 +62,26 @@ YAZ_EXPORT char *yaz_filepath_resolve(const char *fname, const char *path, /** \brief opens first file in path in path \param fname "short" filename (without path) + \param mode mode as in fopen(3) \param path the path (dir1:dir2,..) - ala Unix \param base can be added to relative paths (NULL for no append) - \param fullpath the full path to filename (if succesful) Returns 0/NULL if no fname could be found in path; - FILE * pointer if fname could be found. + FILE pointer if fname could be found. */ -YAZ_EXPORT FILE *yaz_fopen(const char *path, const char *name, +YAZ_EXPORT FILE *yaz_fopen(const char *path, const char *fname, const char *mode, const char *base); /** \brief opens first file in path in path \param fname "short" filename (without path) + \param mode mode as in fopen(3) \param path the path (dir1:dir2,..) - ala Unix - \param fullpath the full path to filename (if succesful) Returns 0/NULL if no fname could be found in path; - FILE * pointer if fname could be found. + FILE pointer if fname could be found. */ -YAZ_EXPORT FILE *yaz_path_fopen(const char *path, const char *name, - const char *mode); +YAZ_EXPORT FILE *yaz_path_fopen(const char *path, const char *fname, + const char *mode); /** \brief closes file \param f FILE handle