annotate src/trash.h @ 729:9a6a7e95467a
Make stricter match for option's names consisting of a prefix and a number.
It allows to have names like "prefix_12" and "prefix_something" in the same file.
Using strtol() was wrong since it allowed names like "prefix_-0xa", leading
to unpredictable results. It was wrong too with "prefix_something", which
was equivalent to "prefix_0", instead of being an option of its own.
author |
zas_ |
date |
Wed, 21 May 2008 19:37:18 +0000 |
parents |
9c28465c95d1 |
children |
1646720364cf |
rev |
line source |
597
|
1 /*
|
|
2 * Geeqie
|
|
3 * Copyright (C) 2008 The Geeqie Team
|
|
4 *
|
|
5 * This software is released under the GNU General Public License (GNU GPL).
|
|
6 * Please read the included file COPYING for more information.
|
|
7 * This software comes with no warranty of any kind, use at your own risk!
|
|
8 */
|
|
9
|
|
10
|
|
11 #ifndef TRASH_H
|
|
12 #define TRASH_H
|
|
13
|
|
14 #include "ui_utildlg.h"
|
|
15
|
|
16 void file_util_trash_clear(void);
|
600
|
17 gint file_util_safe_unlink(const gchar *path);
|
|
18 gchar *file_util_safe_delete_status(void);
|
597
|
19
|
600
|
20 #endif /* TRASH_H */
|