c73f78e13e912759650d461d5651a3ed1d5b5648
[apps/madmutt.git] / lib-lib / file.h
1 /*
2  *  This program is free software; you can redistribute it and/or modify
3  *  it under the terms of the GNU General Public License as published by
4  *  the Free Software Foundation; either version 2 of the License, or (at
5  *  your option) any later version.
6  *
7  *  This program is distributed in the hope that it will be useful, but
8  *  WITHOUT ANY WARRANTY; without even the implied warranty of
9  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10  *  General Public License for more details.
11  *
12  *  You should have received a copy of the GNU General Public License
13  *  along with this program; if not, write to the Free Software
14  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
15  *  MA 02110-1301, USA.
16  *
17  *  Copyright © 2006 Pierre Habouzit
18  */
19 /*
20  * Copyright notice from original mutt:
21  * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
22  * Copyright (C) 1999-2000 Thomas Roessler <roessler@does-not-exist.org>
23  *
24  * This file is part of mutt-ng, see http://www.muttng.org/.
25  * It's licensed under the GNU General Public License,
26  * please see the file GPL in the top level source directory.
27  */
28
29 /*
30  * File manipulations + saner libgen functions
31  */
32
33 #ifndef MUTT_LIB_LIB_FILE_H
34 #define MUTT_LIB_LIB_FILE_H
35
36 /****************************************************************************/
37 /* fd ops                                                                   */
38 /****************************************************************************/
39
40 int safe_open(const char *, int);
41 int safe_symlink(const char *, const char *);
42 int safe_rename(const char *, const char *);
43 void mutt_unlink(const char *);
44
45 /****************************************************************************/
46 /* FILE* ops                                                                */
47 /****************************************************************************/
48
49 FILE *safe_fopen(const char *, const char *);
50 int mutt_rename_file(char *, char *);
51 int safe_fclose(FILE **);
52
53 char *mutt_read_line(char *, ssize_t *, FILE *, int *);
54
55 int mutt_copy_stream(FILE *, FILE *);
56 int mutt_copy_bytes(FILE *, FILE *, ssize_t);
57
58 /****************************************************************************/
59 /* ligben-like funcs                                                        */
60 /****************************************************************************/
61
62 const char *mutt_basename(const char *);
63 char *mutt_concat_path(char *, ssize_t, const char *, const char *);
64
65 void mutt_sanitize_filename(char *, short);
66 ssize_t mutt_quote_filename(char *, ssize_t, const char *);
67
68 #endif /* MUTT_LIB_LIB_FILE_H */