Remove commented out code.
[geeqie.git] / src / secure_save.h
1 /*
2  * Geeqie
3  * Copyright (C) 2008 - 2012 The Geeqie Team
4  *
5  * based on the code developped for ELinks by Laurent Monin
6  *
7  * This software is released under the GNU General Public License (GNU GPL).
8  * Please read the included file COPYING for more information.
9  * This software comes with no warranty of any kind, use at your own risk!
10  */
11
12 #ifndef SECURE_SAVE_H
13 #define SECURE_SAVE_H
14
15 extern SecureSaveErrno secsave_errno; /**< internal secsave error number */
16
17 SecureSaveInfo *secure_open(const gchar *);
18
19 gint secure_close(SecureSaveInfo *);
20
21 gint secure_fputs(SecureSaveInfo *, const gchar *);
22 gint secure_fputc(SecureSaveInfo *, gint);
23
24 gint secure_fprintf(SecureSaveInfo *, const gchar *, ...);
25 size_t secure_fwrite(gconstpointer ptr, size_t size, size_t nmemb, SecureSaveInfo *ssi);
26
27 gchar *secsave_strerror(SecureSaveErrno);
28
29 #endif /* SECURE_SAVE_H */
30 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */