OSDN Git Service

73a753f645946e97203e0e0218d0d921c0d51476
[android-x86/external-exfat.git] / label / main.c
1 /*
2         label.c (20.01.11)
3         Prints or changes exFAT volume label.
4
5         Copyright (C) 2011  Andrew Nayenko
6
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.
11
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.
16
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/>.
19 */
20
21 #include <stdio.h>
22 #include <exfat.h>
23
24 int main(int argc, char* argv[])
25 {
26         struct exfat ef;
27         int rc = 0;
28
29         if (argc != 2 && argc != 3)
30         {
31                 fprintf(stderr, "Usage: %s <device> [label]\n", argv[0]);
32                 return 1;
33         }
34
35         if (argv[2])
36         {
37                 if (exfat_mount(&ef, argv[1], "") != 0)
38                         return 1;
39                 rc = (exfat_set_label(&ef, argv[2]) != 0);
40         }
41         else
42         {
43                 if (exfat_mount(&ef, argv[1], "ro") != 0)
44                         return 1;
45                 puts(exfat_get_label(&ef));
46         }
47
48         exfat_unmount(&ef);
49         return rc;
50 }