move rfc2047.c into lib-mime, reindent it.
[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 #include <stdio.h>
37 #include <stdlib.h>
38
39 /****************************************************************************/
40 /* fd ops                                                                   */
41 /****************************************************************************/
42
43 int safe_open(const char *, int);
44 int safe_symlink(const char *, const char *);
45 int safe_rename(const char *, const char *);
46 void mutt_unlink(const char *);
47
48 /****************************************************************************/
49 /* FILE* ops                                                                */
50 /****************************************************************************/
51
52 FILE *safe_fopen(const char *, const char *);
53 int safe_fclose(FILE **);
54
55 char *mutt_read_line(char *, size_t *, FILE *, int *);
56
57 int mutt_copy_stream(FILE *, FILE *);
58 int mutt_copy_bytes(FILE *, FILE *, size_t);
59
60 /****************************************************************************/
61 /* ligben-like funcs                                                        */
62 /****************************************************************************/
63
64 const char *mutt_basename(const char *);
65 char *mutt_concat_path(char *, ssize_t, const char *, const char *);
66
67 void mutt_sanitize_filename(char *, short);
68 ssize_t mutt_quote_filename(char *, ssize_t, const char *);
69
70 #endif /* MUTT_LIB_LIB_FILE_H */