summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2005-10-18 06:09:13 +0000
committerWerner Lemberg <wl@gnu.org>2005-10-18 06:09:13 +0000
commit8e6c56f99e17c5f882dc11dda1444d7c12fe0325 (patch)
treea917a33f09520c1d43269a7e583d95823f1a6402 /src/tools
parent6d24acb9a598e5153ee5a8ea6784de3b817d29a5 (diff)
Formatting, CR/LF issues.
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/apinames.c16
1 files changed, 10 insertions, 6 deletions
diff --git a/src/tools/apinames.c b/src/tools/apinames.c
index e26b6c61..4f151eba 100644
--- a/src/tools/apinames.c
+++ b/src/tools/apinames.c
@@ -1,17 +1,21 @@
-/* this little program is used to parse the FreeType headers and
- * find the declaration of all public API. This is easy, because
+/*
+ * This little program is used to parse the FreeType headers and
+ * find the declaration of all public API. This is easy, because
* they all look like the following:
*
* FT_EXPORT( return_type )
* function_name( function arguments );
*
- * you must pass it the list of header files as arguments, wildcards
- * accepted if you're using GCC on Windows
+ * You must pass the list of header files as arguments. Wildcards are
+ * accepted if you are using GCC for compilation (and probably by
+ * other compilers too).
*
- * Author: David Turner
+ * Author: David Turner, 2005
+ *
+ * This code is explicitly placed into the public domain.
*
- * This code is explicitely placed in the public domain
*/
+
#include <stdio.h>
#include <stdlib.h>