X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Ffile-name.h;h=edd70f2fac90649663f8bbcdf562e562fbac7e03;hb=84d8b182e81aea6cd7422611888192bcc1ac6980;hp=d4540ffe1bc4a256a220341e68a203e3bb46346d;hpb=a7a18bd636d11d167c1ebe54c9893a0c23d44bc9;p=pspp-builds.git diff --git a/src/data/file-name.h b/src/data/file-name.h index d4540ffe..edd70f2f 100644 --- a/src/data/file-name.h +++ b/src/data/file-name.h @@ -1,6 +1,5 @@ /* PSPP - computes sample statistics. Copyright (C) 1997-9, 2000 Free Software Foundation, Inc. - Written by Ben Pfaff . This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -21,28 +20,24 @@ #define FILE_NAME_H 1 #include +#include +#include /* Search path for configuration files. */ extern const char *config_path; void fn_init (void); -struct string; -void fn_interp_vars (struct string *target, - const char *(*getenv) (const char *)); -char *fn_tilde_expand (const char *fn); -char *fn_search_path (const char *base_name, const char *path, - const char *prefix); -char *fn_normalize (const char *fn); +void fn_interp_vars (struct substring src, + const char *(*getenv) (const char *), + struct string *dst); +char *fn_search_path (const char *base_name, const char *path); char *fn_dir_name (const char *fn); char *fn_extension (const char *fn); -char *fn_get_cwd (void); - -int fn_is_absolute (const char *fn); -int fn_is_special (const char *fn); -int fn_exists (const char *fn); -char *fn_readlink (const char *fn); +bool fn_is_absolute (const char *fn); +bool fn_is_special (const char *fn); +bool fn_exists (const char *fn); const char *fn_getenv (const char *variable); const char *fn_getenv_default (const char *variable, const char *def); @@ -50,7 +45,7 @@ const char *fn_getenv_default (const char *variable, const char *def); FILE *fn_open (const char *fn, const char *mode); int fn_close (const char *fn, FILE *file); -struct file_identity *fn_get_identity (const char *filename); +struct file_identity *fn_get_identity (const char *file_name); void fn_free_identity (struct file_identity *); int fn_compare_file_identities (const struct file_identity *, const struct file_identity *);