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=f38d0f3e141024fcebc55db653998dbc4bca84b7;hpb=b74d09af5e07f954c18e7cdb8aca3af47fa10208;p=pspp diff --git a/src/data/file-name.h b/src/data/file-name.h index f38d0f3e14..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; @@ -33,17 +33,16 @@ 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);