http://linux-ntfs.sourceforge.net/snapshots/ntfsprogs-200307311516.tar.bz2
[ntfsprogs.git] / doc / template.c
1 const char *EXEC_NAME = "";
2 const char *EXEC_VERSION= "0.0.1";
3 /*
4  * EXEC_NAME - Part of the Linux-NTFS project.
5  *
6  * Copyright (c) 2000-2002 Anton Altaparmakov
7  *
8  * Short description here.
9  *
10  *      Anton Altaparmakov <aia21@cantab.net>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License along
23  * with this program (in the main directory of the Linux-NTFS distribution
24  * in the file COPYING); if not, write to the Free Software Foundation,
25  * Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26  */
27
28 /*
29  * WARNING: This program might not work on architectures which do not allow
30  * unaligned access. For those, the program would need to start using
31  * get/put_unaligned macros (#include <asm/unaligned.h>), but not doing it yet,
32  * since NTFS really mostly applies to ia32 only, which does allow unaligned
33  * accesses. We might not actually have a problem though, since the structs are
34  * defined as being packed so that might be enough for gcc to insert the
35  * correct code.
36  *
37  * If anyone using a non-little endian and/or an aligned access only CPU tries
38  * this program please let me know whether it works or not!
39  *
40  *      Anton Altaparmakov <aia21@cantab.net>
41  */
42
43 int main(int argc, char **argv)
44 {
45         return 0;
46 }
47