X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Ffile-name.h;h=a5f62776647e1c2e8ba114d181b0b71cb1d1aeec;hb=bc02bc027697df3207f827de722c26d8cc87e824;hp=427fa8dca7e70107f7cbbfb95d2760ff99ca8fc6;hpb=3f2ed1c5fe6dc692ca00bb18a15e41617fa2d37d;p=pspp diff --git a/src/data/file-name.h b/src/data/file-name.h index 427fa8dca7..a5f6277664 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,6 +20,7 @@ #define FILE_NAME_H 1 #include +#include /* Search path for configuration files. */ extern const char *config_path; @@ -28,20 +28,21 @@ extern const char *config_path; void fn_init (void); struct string; -void fn_interp_vars (struct string *target, - const char *(*getenv) (const char *)); +struct substring; +void fn_interp_vars (struct substring src, + const char *(*getenv) (const char *), + struct string *dst); char *fn_tilde_expand (const char *fn); -char *fn_search_path (const char *base_name, const char *path, - const char *prefix); +char *fn_search_path (const char *base_name, const char *path); char *fn_normalize (const char *fn); 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); +bool fn_is_absolute (const char *fn); +bool fn_is_special (const char *fn); +bool fn_exists (const char *fn); char *fn_readlink (const char *fn); const char *fn_getenv (const char *variable);