X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Ffile-name.h;h=0a0e2f26fe9775c10a999bf44e32d579268d441c;hb=d62bc5d865e472cd9c20ed54383f29c2a57344ec;hp=327d716e7f57723da0922a0179779fe9cd15e620;hpb=8b71948cd57dbd2787cb4c50525b957e9be8a62b;p=pspp diff --git a/src/data/file-name.h b/src/data/file-name.h index 327d716e7f..0a0e2f26fe 100644 --- a/src/data/file-name.h +++ b/src/data/file-name.h @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997-9, 2000, 2009 Free Software Foundation, Inc. + Copyright (C) 1997-9, 2000, 2009, 2010 Free Software Foundation, Inc. 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 @@ -19,40 +19,17 @@ #include #include -#include #include -/* Search path for configuration files. */ -extern const char *config_path; - -void fn_init (void); - -void fn_interp_vars (struct substring src, - void (*insert_variable) (const char *var, - struct string *dst, void *aux), - void *aux, struct string *dst); -char *fn_search_path (const char *base_name, const char *path); -char *fn_dir_name (const char *fn); +char *fn_search_path (const char *base_name, char **path); char *fn_extension (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); - FILE *fn_open (const char *fn, const char *mode); int fn_close (const char *fn, FILE *file); -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 *); - const char * default_output_path (void); #endif /* file-name.h */