X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Ffile-name.h;h=b4231d2f87178b841f85cf62d69a76e15b871b5e;hb=4d688b2e05945b3e3c733a005fb2775110ebb78b;hp=f9620b035dfb6388aa25112533981aebd5a0f365;hpb=5f168bf8465ae50ba5c2c761b52f29a0500c0658;p=pspp-builds.git diff --git a/src/data/file-name.h b/src/data/file-name.h index f9620b03..b4231d2f 100644 --- a/src/data/file-name.h +++ b/src/data/file-name.h @@ -1,61 +1,42 @@ -/* 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 - -/* Directory separator and path delimiter for this OS. */ -#ifndef __MSDOS__ -#define DIR_SEPARATOR '/' -#define PATH_DELIMITER ':' -#define DIR_SEPARATOR_STRING "/" -#define PATH_DELIMITER_STRING ":" -#else -#define DIR_SEPARATOR '\\' -#define PATH_DELIMITER ';' -#define DIR_SEPARATOR_STRING "\\" -#define PATH_DELIMITER_STRING ";" -#endif +#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); @@ -63,9 +44,12 @@ 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); +FILE *create_stream (const char *fn, const char *mode, mode_t permissions); + +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 *); +unsigned int fn_hash_identity (const struct file_identity *); #endif /* file-name.h */