3 exFAT file system implementation library.
5 Copyright (C) 2009, 2010 Andrew Nayenko
7 This program is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
28 * This message means an internal bug in exFAT implementation.
30 void exfat_bug(const char* format, ...)
38 fputs("BUG: ", stderr);
39 vfprintf(stderr, format, ap);
43 vsyslog(LOG_CRIT, format, aq);
50 * This message means an error in exFAT file system.
52 void exfat_error(const char* format, ...)
61 fputs("ERROR: ", stderr);
62 vfprintf(stderr, format, ap);
66 vsyslog(LOG_ERR, format, aq);
71 * This message means that there is something unexpected in exFAT file system
72 * that can be a potential problem.
74 void exfat_warn(const char* format, ...)
82 fputs("WARN: ", stderr);
83 vfprintf(stderr, format, ap);
87 vsyslog(LOG_WARNING, format, aq);
92 * Just debug message. Disabled by default.
94 void exfat_debug(const char* format, ...)
99 fputs("DEBUG: ", stderr);
100 va_start(ap, format);
101 vfprintf(stderr, format, ap);
103 fputs(".\n", stderr);