X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Ffile-name.h;h=d18ce22a5f51d418ea16c6d838e14ccca1412cc9;hb=29956ba4326b9d6a2bc4d22a9f323902c7a08d43;hp=51fca9ef4dc1f8ca95cea957402398f3d9311a56;hpb=4196dc548eca5925571a9f61fbb1008646f3a09d;p=pspp-builds.git diff --git a/src/data/file-name.h b/src/data/file-name.h index 51fca9ef..d18ce22a 100644 --- a/src/data/file-name.h +++ b/src/data/file-name.h @@ -1,50 +1,41 @@ -/* PSPP - computes sample statistics. +/* PSPP - a program for statistical analysis. 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 - published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - General Public License for more details. + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA - 02110-1301, USA. */ + along with this program. If not, see . */ #ifndef FILE_NAME_H #define FILE_NAME_H 1 #include #include +#include /* Search path for configuration files. */ extern const char *config_path; void fn_init (void); -struct string; -struct substring; -void fn_interp_vars (struct substring src, +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); -char *fn_normalize (const char *fn); char *fn_dir_name (const char *fn); char *fn_extension (const char *fn); -char *fn_get_cwd (void); - 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); const char *fn_getenv_default (const char *variable, const char *def);