blob: 2e5b5caf681a25beb7e6f753484f403c699b41f3 [file] [log] [blame]
bigbiff bigbiff9c754052013-01-09 09:09:08 -05001/*
2 main.c (20.01.11)
3 Prints or changes exFAT volume label.
4
bigbiff bigbiff61cdc022013-08-08 08:35:06 -04005 Free exFAT implementation.
bigbiff bigbiffca829c42013-01-28 08:14:25 -05006 Copyright (C) 2011-2013 Andrew Nayenko
bigbiff bigbiff9c754052013-01-09 09:09:08 -05007
bigbiff bigbiff61cdc022013-08-08 08:35:06 -04008 This program is free software; you can redistribute it and/or modify
bigbiff bigbiff9c754052013-01-09 09:09:08 -05009 it under the terms of the GNU General Public License as published by
bigbiff bigbiff61cdc022013-08-08 08:35:06 -040010 the Free Software Foundation, either version 2 of the License, or
bigbiff bigbiff9c754052013-01-09 09:09:08 -050011 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
bigbiff bigbiff61cdc022013-08-08 08:35:06 -040018 You should have received a copy of the GNU General Public License along
19 with this program; if not, write to the Free Software Foundation, Inc.,
20 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
bigbiff bigbiff9c754052013-01-09 09:09:08 -050021*/
22
23#include <stdio.h>
24#include <string.h>
25#include <exfat.h>
26
27int main(int argc, char* argv[])
28{
29 char** pp;
30 struct exfat ef;
31 int rc = 0;
32
33 for (pp = argv + 1; *pp; pp++)
bigbiff bigbiff004e2df2013-07-03 14:52:12 -040034 if (strcmp(*pp, "-V") == 0)
bigbiff bigbiff9c754052013-01-09 09:09:08 -050035 {
36 printf("exfatlabel %u.%u.%u\n", EXFAT_VERSION_MAJOR,
37 EXFAT_VERSION_MINOR, EXFAT_VERSION_PATCH);
bigbiff bigbiffca829c42013-01-28 08:14:25 -050038 puts("Copyright (C) 2011-2013 Andrew Nayenko");
bigbiff bigbiff9c754052013-01-09 09:09:08 -050039 return 0;
40 }
41
42 if (argc != 2 && argc != 3)
43 {
bigbiff bigbiff004e2df2013-07-03 14:52:12 -040044 fprintf(stderr, "Usage: %s [-V] <device> [label]\n", argv[0]);
bigbiff bigbiff9c754052013-01-09 09:09:08 -050045 return 1;
46 }
47
48 if (argv[2])
49 {
50 if (exfat_mount(&ef, argv[1], "") != 0)
51 return 1;
52 rc = (exfat_set_label(&ef, argv[2]) != 0);
53 }
54 else
55 {
56 if (exfat_mount(&ef, argv[1], "ro") != 0)
57 return 1;
58 puts(exfat_get_label(&ef));
59 }
60
61 exfat_unmount(&ef);
62 return rc;
63}