From a43ba0c36d311dcb8e1f953e21760b8d1a902429 Mon Sep 17 00:00:00 2001 From: relan Date: Sun, 10 Jan 2010 19:53:49 +0000 Subject: [PATCH] Change source files headings to meet FSF recommendations. --- SConstruct | 21 ++++++++++++++++----- fsck/main.c | 25 ++++++++++++++++++------- fuse/main.c | 25 ++++++++++++++++++------- libexfat/cluster.c | 25 ++++++++++++++++++------- libexfat/exfat.h | 27 +++++++++++++++++++-------- libexfat/exfatfs.h | 25 ++++++++++++++++++------- libexfat/io.c | 25 ++++++++++++++++++------- libexfat/log.c | 25 ++++++++++++++++++------- libexfat/lookup.c | 25 ++++++++++++++++++------- libexfat/mount.c | 25 ++++++++++++++++++------- libexfat/node.c | 25 ++++++++++++++++++------- libexfat/utf.c | 25 ++++++++++++++++++------- libexfat/utils.c | 25 ++++++++++++++++++------- 13 files changed, 233 insertions(+), 90 deletions(-) diff --git a/SConstruct b/SConstruct index e2677a5..ddf3a22 100644 --- a/SConstruct +++ b/SConstruct @@ -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 . # import os diff --git a/fsck/main.c b/fsck/main.c index a5a7b7f..bc5a2d2 100644 --- a/fsck/main.c +++ b/fsck/main.c @@ -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 . +*/ #include #include diff --git a/fuse/main.c b/fuse/main.c index fea1f00..a37256d 100644 --- a/fuse/main.c +++ b/fuse/main.c @@ -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 . +*/ #include #include diff --git a/libexfat/cluster.c b/libexfat/cluster.c index 282cd4d..d7e01f3 100644 --- a/libexfat/cluster.c +++ b/libexfat/cluster.c @@ -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 . +*/ #include "exfat.h" #include diff --git a/libexfat/exfat.h b/libexfat/exfat.h index 30f24c7..a51b922 100644 --- a/libexfat/exfat.h +++ b/libexfat/exfat.h @@ -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 . +*/ #ifndef EXFAT_H_INCLUDED #define EXFAT_H_INCLUDED diff --git a/libexfat/exfatfs.h b/libexfat/exfatfs.h index bc63948..ed918be 100644 --- a/libexfat/exfatfs.h +++ b/libexfat/exfatfs.h @@ -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 . +*/ #ifndef EXFATFS_H_INCLUDED #define EXFATFS_H_INCLUDED diff --git a/libexfat/io.c b/libexfat/io.c index 33f5fd1..65d8d74 100644 --- a/libexfat/io.c +++ b/libexfat/io.c @@ -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 . +*/ #include "exfat.h" #include diff --git a/libexfat/log.c b/libexfat/log.c index 60bd822..4a4e7de 100644 --- a/libexfat/log.c +++ b/libexfat/log.c @@ -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 . +*/ #include "exfat.h" #include diff --git a/libexfat/lookup.c b/libexfat/lookup.c index 8cb5811..bad36ad 100644 --- a/libexfat/lookup.c +++ b/libexfat/lookup.c @@ -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 . +*/ #include "exfat.h" #include diff --git a/libexfat/mount.c b/libexfat/mount.c index d383b7d..87f97dc 100644 --- a/libexfat/mount.c +++ b/libexfat/mount.c @@ -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 . +*/ #include "exfat.h" #include diff --git a/libexfat/node.c b/libexfat/node.c index d96d3d4..368801e 100644 --- a/libexfat/node.c +++ b/libexfat/node.c @@ -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 . +*/ #include "exfat.h" #include diff --git a/libexfat/utf.c b/libexfat/utf.c index 8598d70..4ed9b5a 100644 --- a/libexfat/utf.c +++ b/libexfat/utf.c @@ -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 . +*/ #include "exfat.h" #include diff --git a/libexfat/utils.c b/libexfat/utils.c index 77c8d24..fc951a1 100644 --- a/libexfat/utils.c +++ b/libexfat/utils.c @@ -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 . +*/ #include "exfat.h" #include -- 2.11.0