OSDN Git Service

Changed source files headings to meet the FSF recommendations.
authorresver <resver@60bc1c72-a15a-11de-b98f-4500b42dc123>
Sun, 10 Jan 2010 19:53:49 +0000 (19:53 +0000)
committerresver <resver@60bc1c72-a15a-11de-b98f-4500b42dc123>
Sun, 10 Jan 2010 19:53:49 +0000 (19:53 +0000)
git-svn-id: http://exfat.googlecode.com/svn/trunk@110 60bc1c72-a15a-11de-b98f-4500b42dc123

13 files changed:
SConstruct
fsck/main.c
fuse/main.c
libexfat/cluster.c
libexfat/exfat.h
libexfat/exfatfs.h
libexfat/io.c
libexfat/log.c
libexfat/lookup.c
libexfat/mount.c
libexfat/node.c
libexfat/utf.c
libexfat/utils.c

index e2677a5..ddf3a22 100644 (file)
@@ -1,10 +1,21 @@
 #
-#  SConstruct
-#  SConscript for all components.
+#      SConstruct (10.09.09)
+#      SConscript for all components.
 #
-#  Created by Andrew Nayenko on 10.09.09.
-#  This software is distributed under the GNU General Public License 
-#  version 3 or any later.
+#      Copyright (C) 2009, 2010  Andrew Nayenko
+#
+#      This program is free software: you can redistribute it and/or modify
+#      it under the terms of the GNU General Public License as published by
+#      the Free Software Foundation, either version 3 of the License, or
+#      (at your option) any later version.
+#
+#      This program is distributed in the hope that it will be useful,
+#      but WITHOUT ANY WARRANTY; without even the implied warranty of
+#      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+#      GNU General Public License for more details.
+#
+#      You should have received a copy of the GNU General Public License
+#      along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #
 
 import os
index a5a7b7f..bc5a2d2 100644 (file)
@@ -1,11 +1,22 @@
 /*
- *  main.c
- *  exFAT file system checker.
- *
- *  Created by Andrew Nayenko on 02.09.09.
- *  This software is distributed under the GNU General Public License 
- *  version 3 or any later.
- */
+       main.c (02.09.09)
+       exFAT file system checker.
+
+       Copyright (C) 2009, 2010  Andrew Nayenko
+
+       This program is free software: you can redistribute it and/or modify
+       it under the terms of the GNU General Public License as published by
+       the Free Software Foundation, either version 3 of the License, or
+       (at your option) any later version.
+
+       This program is distributed in the hope that it will be useful,
+       but WITHOUT ANY WARRANTY; without even the implied warranty of
+       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+       GNU General Public License for more details.
+
+       You should have received a copy of the GNU General Public License
+       along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*/
 
 #include <stdio.h>
 #include <string.h>
index fea1f00..a37256d 100644 (file)
@@ -1,11 +1,22 @@
 /*
- *  main.c
- *  FUSE-based exFAT implementation. Requires FUSE 2.6 or later.
- *
- *  Created by Andrew Nayenko on 01.09.09.
- *  This software is distributed under the GNU General Public License 
- *  version 3 or any later.
- */
+       main.c (01.09.09)
+       FUSE-based exFAT implementation. Requires FUSE 2.6 or later.
+
+       Copyright (C) 2009, 2010  Andrew Nayenko
+
+       This program is free software: you can redistribute it and/or modify
+       it under the terms of the GNU General Public License as published by
+       the Free Software Foundation, either version 3 of the License, or
+       (at your option) any later version.
+
+       This program is distributed in the hope that it will be useful,
+       but WITHOUT ANY WARRANTY; without even the implied warranty of
+       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+       GNU General Public License for more details.
+
+       You should have received a copy of the GNU General Public License
+       along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*/
 
 #include <fuse.h>
 #include <errno.h>
index 282cd4d..d7e01f3 100644 (file)
@@ -1,11 +1,22 @@
 /*
- *  cluster.c
- *  exFAT file system implementation library.
- *
- *  Created by Andrew Nayenko on 03.09.09.
- *  This software is distributed under the GNU General Public License 
- *  version 3 or any later.
- */
+       cluster.c (03.09.09)
+       exFAT file system implementation library.
+
+       Copyright (C) 2009, 2010  Andrew Nayenko
+
+       This program is free software: you can redistribute it and/or modify
+       it under the terms of the GNU General Public License as published by
+       the Free Software Foundation, either version 3 of the License, or
+       (at your option) any later version.
+
+       This program is distributed in the hope that it will be useful,
+       but WITHOUT ANY WARRANTY; without even the implied warranty of
+       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+       GNU General Public License for more details.
+
+       You should have received a copy of the GNU General Public License
+       along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*/
 
 #include "exfat.h"
 #include <errno.h>
index 30f24c7..a51b922 100644 (file)
@@ -1,12 +1,23 @@
 /*
- *  exfat.h
- *  Definitions of structures and constants used in exFAT file system
- *  implementation.
- *
- *  Created by Andrew Nayenko on 29.08.09.
- *  This software is distributed under the GNU General Public License 
- *  version 3 or any later.
- */
+       exfat.h (29.08.09)
+       Definitions of structures and constants used in exFAT file system
+       implementation.
+
+       Copyright (C) 2009, 2010  Andrew Nayenko
+
+       This program is free software: you can redistribute it and/or modify
+       it under the terms of the GNU General Public License as published by
+       the Free Software Foundation, either version 3 of the License, or
+       (at your option) any later version.
+
+       This program is distributed in the hope that it will be useful,
+       but WITHOUT ANY WARRANTY; without even the implied warranty of
+       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+       GNU General Public License for more details.
+
+       You should have received a copy of the GNU General Public License
+       along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*/
 
 #ifndef EXFAT_H_INCLUDED
 #define EXFAT_H_INCLUDED
index bc63948..ed918be 100644 (file)
@@ -1,11 +1,22 @@
 /*
- *  exfatfs.h
- *  Definitions of structures and constants used in exFAT file system.
- *
- *  Created by Andrew Nayenko on 29.08.09.
- *  This software is distributed under the GNU General Public License 
- *  version 3 or any later.
- */
+       exfatfs.h (29.08.09)
+       Definitions of structures and constants used in exFAT file system.
+
+       Copyright (C) 2009, 2010  Andrew Nayenko
+
+       This program is free software: you can redistribute it and/or modify
+       it under the terms of the GNU General Public License as published by
+       the Free Software Foundation, either version 3 of the License, or
+       (at your option) any later version.
+
+       This program is distributed in the hope that it will be useful,
+       but WITHOUT ANY WARRANTY; without even the implied warranty of
+       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+       GNU General Public License for more details.
+
+       You should have received a copy of the GNU General Public License
+       along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*/
 
 #ifndef EXFATFS_H_INCLUDED
 #define EXFATFS_H_INCLUDED
index 33f5fd1..65d8d74 100644 (file)
@@ -1,11 +1,22 @@
 /*
- *  io.c
- *  exFAT file system implementation library.
- *
- *  Created by Andrew Nayenko on 02.09.09.
- *  This software is distributed under the GNU General Public License 
- *  version 3 or any later.
- */
+       io.c (02.09.09)
+       exFAT file system implementation library.
+
+       Copyright (C) 2009, 2010  Andrew Nayenko
+
+       This program is free software: you can redistribute it and/or modify
+       it under the terms of the GNU General Public License as published by
+       the Free Software Foundation, either version 3 of the License, or
+       (at your option) any later version.
+
+       This program is distributed in the hope that it will be useful,
+       but WITHOUT ANY WARRANTY; without even the implied warranty of
+       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+       GNU General Public License for more details.
+
+       You should have received a copy of the GNU General Public License
+       along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*/
 
 #include "exfat.h"
 #include <inttypes.h>
index 60bd822..4a4e7de 100644 (file)
@@ -1,11 +1,22 @@
 /*
- *  log.c
- *  exFAT file system implementation library.
- *
- *  Created by Andrew Nayenko on 02.09.09.
- *  This software is distributed under the GNU General Public License 
- *  version 3 or any later.
- */
+       log.c (02.09.09)
+       exFAT file system implementation library.
+
+       Copyright (C) 2009, 2010  Andrew Nayenko
+
+       This program is free software: you can redistribute it and/or modify
+       it under the terms of the GNU General Public License as published by
+       the Free Software Foundation, either version 3 of the License, or
+       (at your option) any later version.
+
+       This program is distributed in the hope that it will be useful,
+       but WITHOUT ANY WARRANTY; without even the implied warranty of
+       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+       GNU General Public License for more details.
+
+       You should have received a copy of the GNU General Public License
+       along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*/
 
 #include "exfat.h"
 #include <stdarg.h>
index 8cb5811..bad36ad 100644 (file)
@@ -1,11 +1,22 @@
 /*
- *  lookup.c
- *  exFAT file system implementation library.
- *
- *  Created by Andrew Nayenko on 02.09.09.
- *  This software is distributed under the GNU General Public License 
- *  version 3 or any later.
- */
+       lookup.c (02.09.09)
+       exFAT file system implementation library.
+
+       Copyright (C) 2009, 2010  Andrew Nayenko
+
+       This program is free software: you can redistribute it and/or modify
+       it under the terms of the GNU General Public License as published by
+       the Free Software Foundation, either version 3 of the License, or
+       (at your option) any later version.
+
+       This program is distributed in the hope that it will be useful,
+       but WITHOUT ANY WARRANTY; without even the implied warranty of
+       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+       GNU General Public License for more details.
+
+       You should have received a copy of the GNU General Public License
+       along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*/
 
 #include "exfat.h"
 #include <string.h>
index d383b7d..87f97dc 100644 (file)
@@ -1,11 +1,22 @@
 /*
- *  mount.c
- *  exFAT file system implementation library.
- *
- *  Created by Andrew Nayenko on 22.10.09.
- *  This software is distributed under the GNU General Public License 
- *  version 3 or any later.
- */
+       mount.c (22.10.09)
+       exFAT file system implementation library.
+
+       Copyright (C) 2009, 2010  Andrew Nayenko
+
+       This program is free software: you can redistribute it and/or modify
+       it under the terms of the GNU General Public License as published by
+       the Free Software Foundation, either version 3 of the License, or
+       (at your option) any later version.
+
+       This program is distributed in the hope that it will be useful,
+       but WITHOUT ANY WARRANTY; without even the implied warranty of
+       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+       GNU General Public License for more details.
+
+       You should have received a copy of the GNU General Public License
+       along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*/
 
 #include "exfat.h"
 #include <string.h>
index d96d3d4..368801e 100644 (file)
@@ -1,11 +1,22 @@
 /*
- *  node.c
- *  exFAT file system implementation library.
- *
- *  Created by Andrew Nayenko on 09.10.09.
- *  This software is distributed under the GNU General Public License 
- *  version 3 or any later.
- */
+       node.c (09.10.09)
+       exFAT file system implementation library.
+
+       Copyright (C) 2009, 2010  Andrew Nayenko
+
+       This program is free software: you can redistribute it and/or modify
+       it under the terms of the GNU General Public License as published by
+       the Free Software Foundation, either version 3 of the License, or
+       (at your option) any later version.
+
+       This program is distributed in the hope that it will be useful,
+       but WITHOUT ANY WARRANTY; without even the implied warranty of
+       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+       GNU General Public License for more details.
+
+       You should have received a copy of the GNU General Public License
+       along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*/
 
 #include "exfat.h"
 #include <errno.h>
index 8598d70..4ed9b5a 100644 (file)
@@ -1,11 +1,22 @@
 /*
- *  utf.c
- *  exFAT file system implementation library.
- *
- *  Created by Andrew Nayenko on 13.09.09.
- *  This software is distributed under the GNU General Public License 
- *  version 3 or any later.
- */
+       utf.c (13.09.09)
+       exFAT file system implementation library.
+
+       Copyright (C) 2009, 2010  Andrew Nayenko
+
+       This program is free software: you can redistribute it and/or modify
+       it under the terms of the GNU General Public License as published by
+       the Free Software Foundation, either version 3 of the License, or
+       (at your option) any later version.
+
+       This program is distributed in the hope that it will be useful,
+       but WITHOUT ANY WARRANTY; without even the implied warranty of
+       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+       GNU General Public License for more details.
+
+       You should have received a copy of the GNU General Public License
+       along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*/
 
 #include "exfat.h"
 #include <errno.h>
index 77c8d24..fc951a1 100644 (file)
@@ -1,11 +1,22 @@
 /*
- *  utils.c
- *  exFAT file system implementation library.
- *
- *  Created by Andrew Nayenko on 04.09.09.
- *  This software is distributed under the GNU General Public License 
- *  version 3 or any later.
- */
+       utils.c (04.09.09)
+       exFAT file system implementation library.
+
+       Copyright (C) 2009, 2010  Andrew Nayenko
+
+       This program is free software: you can redistribute it and/or modify
+       it under the terms of the GNU General Public License as published by
+       the Free Software Foundation, either version 3 of the License, or
+       (at your option) any later version.
+
+       This program is distributed in the hope that it will be useful,
+       but WITHOUT ANY WARRANTY; without even the implied warranty of
+       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+       GNU General Public License for more details.
+
+       You should have received a copy of the GNU General Public License
+       along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*/
 
 #include "exfat.h"
 #include <string.h>