diff options
Diffstat (limited to 'src/LYUtils.h')
-rw-r--r-- | src/LYUtils.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/LYUtils.h b/src/LYUtils.h index 557d971c..3896624e 100644 --- a/src/LYUtils.h +++ b/src/LYUtils.h @@ -57,6 +57,10 @@ extern time_t LYmktime PARAMS((char *string, BOOL absolute)); extern int putenv PARAMS((CONST char *string)); #endif /* HAVE_PUTENV */ +FILE *LYNewBinFile PARAMS((char * name)); +FILE *LYNewTxtFile PARAMS((char * name)); +FILE *LYAppendToTxtFile PARAMS((char * name)); + /* * Whether or not the status line must be shown. */ @@ -131,4 +135,7 @@ extern HTList *sug_filenames; #define STREQ(a,b) (strcmp(a,b) == 0) #define STRNEQ(a,b,c) (strncmp(a,b,c) == 0) +#define HIDE_CHMOD 0600 +#define HIDE_UMASK 0077 + #endif /* LYUTILS_H */ |